10 lines
230 B
C#
10 lines
230 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Umbraco.Tests.Benchmarks
|
|
{
|
|
internal static class Program
|
|
{
|
|
private static void Main(string[] args) => new BenchmarkSwitcher(typeof(Program).Assembly).Run(args);
|
|
}
|
|
}
|