Files
sharpcompress/tests/SharpCompress.Performance/Program.cs
2026-01-05 17:27:50 +00:00

18 lines
430 B
C#

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;
// BenchmarkRunner will find all classes with [Benchmark] attributes
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, config);
}
}