Files
OldThink/Content.Benchmarks/Program.cs

13 lines
261 B
C#
Raw Normal View History

using BenchmarkDotNet.Running;
namespace Content.Benchmarks
{
internal static class Program
{
public static void Main(string[] args)
{
2020-07-11 13:21:34 +02:00
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
}
}
}