You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 rivejä
458 B

  1. using BenchmarkDotNet.Configs;
  2. using BenchmarkDotNet.Environments;
  3. using BenchmarkDotNet.Jobs;
  4. using BenchmarkDotNet.Toolchains.CsProj;
  5. namespace MQTTnet.Benchmarks.Configurations
  6. {
  7. public class RuntimeCompareConfig : BaseConfig
  8. {
  9. public RuntimeCompareConfig()
  10. {
  11. Add(Job.Default.With(ClrRuntime.Net472));
  12. Add(Job.Default.With(CoreRuntime.Core22).With(CsProjCoreToolchain.NetCoreApp22));
  13. }
  14. }
  15. }