25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
538 B

  1. using BenchmarkDotNet.Configs;
  2. using System.Linq;
  3. namespace MQTTnet.Benchmarks.Configurations
  4. {
  5. public class BaseConfig : ManualConfig
  6. {
  7. public BaseConfig()
  8. {
  9. Add(DefaultConfig.Instance.GetLoggers().ToArray()); // manual config has no loggers by default
  10. Add(DefaultConfig.Instance.GetExporters().ToArray()); // manual config has no exporters by default
  11. Add(DefaultConfig.Instance.GetColumnProviders().ToArray()); // manual config has no columns by default
  12. }
  13. }
  14. }