Recreate benchmark project and update deps Fix #3561

This commit is contained in:
James Jackson-South
2018-11-08 15:33:14 +00:00
committed by Sebastiaan Janssen
parent f13cc6a210
commit 0803e0fa7f
8 changed files with 52 additions and 406 deletions

View File

@@ -2,11 +2,8 @@
namespace Umbraco.Tests.Benchmarks
{
internal class Program
internal static class Program
{
public static void Main(string[] args)
{
new BenchmarkSwitcher(typeof(Program).Assembly).Run(args);
}
private static void Main(string[] args) => new BenchmarkSwitcher(typeof(Program).Assembly).Run(args);
}
}