Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

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