Program.cs 279 B

123456789101112
  1. using BenchmarkDotNet.Running;
  2. namespace Renci.SshNet.IntegrationBenchmarks
  3. {
  4. public static class Program
  5. {
  6. public static void Main(string[] args)
  7. {
  8. _ = BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
  9. }
  10. }
  11. }