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.

15 line
284 B

  1. using BenchmarkDotNet.Reports;
  2. using BenchmarkDotNet.Running;
  3. using System;
  4. namespace JTNE.Protocol.Benchmark
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. Summary summary = BenchmarkRunner.Run<JTNESerializerContext>();
  11. }
  12. }
  13. }