Files

17 lines
429 B
C#
Raw Permalink Normal View History

using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Running;
namespace SharpCompress.Performance;
internal class Program
{
static void Main(string[] args)
{
// Run all benchmarks in the assembly
var config = DefaultConfig.Instance;
2025-10-23 11:43:21 +01:00
// BenchmarkRunner will find all classes with [Benchmark] attributes
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, config);
}
}