using BenchmarkDotNet.Configs; using BenchmarkDotNet.Jobs; using BenchmarkDotNet.Running; public class Program { public static void Main( string[] args ) { var config = ManualConfig .Create( DefaultConfig.Instance ) .WithOptions( ConfigOptions.JoinSummary | ConfigOptions.DisableLogFile | ConfigOptions.LogBuildOutput ) .AddJob( Job.MediumRun ); //BenchmarkRunner.Run( config ); //BenchmarkRunner.Run( config ); //BenchmarkRunner.Run( config ); BenchmarkRunner.Run( config ); //BenchmarkRunner.Run( typeof( Program ).Assembly, config ); } }