Files
Umbraco-CMS/tests/Umbraco.Tests.Benchmarks/Program.cs

9 lines
209 B
C#
Raw Normal View History

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