mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
15 lines
327 B
C#
15 lines
327 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Robust.Benchmarks
|
|
{
|
|
internal class Program
|
|
{
|
|
// --allCategories=ctg1,ctg2
|
|
// --anyCategories=ctg1,ctg2
|
|
public static void Main(string[] args)
|
|
{
|
|
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
|
|
}
|
|
}
|
|
}
|