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.
 
 
 
 

18 lignes
551 B

  1. using BenchmarkDotNet.Jobs;
  2. using BenchmarkDotNet.Validators;
  3. namespace MQTTnet.Benchmarks.Configurations
  4. {
  5. /// <summary>
  6. /// this options may be used to run benchmarks in debugmode and attach a performance profiler
  7. /// https://benchmarkdotnet.org/Configs/Configs.htm
  8. /// </summary>
  9. public class AllowNonOptimized : BaseConfig
  10. {
  11. public AllowNonOptimized()
  12. {
  13. AddValidator(JitOptimizationsValidator.DontFailOnError); // ALLOW NON-OPTIMIZED DLLS
  14. AddJob(Job.InProcess);
  15. }
  16. }
  17. }