aspnetcore/benchmarks/Microsoft.AspNetCore.Signal.../Program.cs

13 lines
302 B
C#

using System.Reflection;
using BenchmarkDotNet.Running;
namespace Microsoft.AspNetCore.SignalR.Microbenchmarks
{
class Program
{
static void Main(string[] args)
{
BenchmarkSwitcher.FromAssembly(typeof(Program).GetTypeInfo().Assembly).Run(args);
}
}
}