mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
15 lines
402 B
C#
15 lines
402 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Kavita.Benchmark;
|
|
|
|
/// <summary>
|
|
/// To build this, cd into API.Benchmark directory and run
|
|
/// dotnet build -c Release
|
|
/// then copy the outputted dll
|
|
/// dotnet copied_string\API.Benchmark.dll
|
|
/// </summary>
|
|
public static class Program
|
|
{
|
|
private static void Main(string[] args) => BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
|
|
}
|