Peter Kurfer
d8d307545f
- Added Benchmarks - Added Nuke build - Refactored directory structure - Generated GitHub Actions config from Nuke - Added tool to handle benchmarking from Nuke
12 lines
No EOL
242 B
C#
12 lines
No EOL
242 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Tand.Core.Benchmarks
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var summary = BenchmarkRunner.Run<RationalTandBenchmerk>();
|
|
}
|
|
}
|
|
} |