您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
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. }