Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

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