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

10 lines
230 B
C#
Raw Normal View History

2017-05-12 14:49:44 +02:00
using BenchmarkDotNet.Running;
namespace Umbraco.Tests.Benchmarks
{
internal static class Program
{
private static void Main(string[] args) => new BenchmarkSwitcher(typeof(Program).Assembly).Run(args);
}
}