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

13 lines
251 B
C#
Raw Normal View History

using BenchmarkDotNet.Running;
namespace Umbraco.Tests.Benchmarks
{
2016-10-28 14:33:44 +02:00
internal class Program
{
2016-10-28 14:33:44 +02:00
public static void Main(string[] args)
{
new BenchmarkSwitcher(typeof(Program).Assembly).Run(args);
}
}
}