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.
|
- using BenchmarkDotNet.Configs;
- using System.Linq;
-
- namespace MQTTnet.Benchmarks.Configurations
- {
- public class BaseConfig : ManualConfig
- {
- public BaseConfig()
- {
- Add(DefaultConfig.Instance.GetLoggers().ToArray()); // manual config has no loggers by default
- Add(DefaultConfig.Instance.GetExporters().ToArray()); // manual config has no exporters by default
- Add(DefaultConfig.Instance.GetColumnProviders().ToArray()); // manual config has no columns by default
- }
- }
- }
|