Program.cs 242 B

1234567891011
  1. using BenchmarkDotNet.Running;
  2. namespace Apq.Cfg.Benchmarks;
  3. public class Program
  4. {
  5. public static void Main(string[] args)
  6. {
  7. BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, new BenchmarkConfig());
  8. }
  9. }