Files
sharpcompress/tests/SharpCompress.Performance/Program.cs
copilot-swe-agent[bot] 49f2271253 Format code with CSharpier
Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
2026-01-05 17:33:06 +00:00

17 lines
429 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);
}
}