mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
* touching publish.yml * Moved Examples into ./Examples * Moved Benchmarks into ./Tests * Moved Benchmarks into ./Tests * Moved UICatalog into ./Examples * Moved UICatalog into ./Examples 2 * Moved tests into ./Tests * Updated nuget
21 lines
553 B
C#
21 lines
553 B
C#
using BenchmarkDotNet.Configs;
|
|
using BenchmarkDotNet.Running;
|
|
|
|
namespace Terminal.Gui.Benchmarks;
|
|
|
|
class Program
|
|
{
|
|
static void Main (string [] args)
|
|
{
|
|
var config = DefaultConfig.Instance;
|
|
|
|
// Uncomment for faster but less accurate intermediate iteration.
|
|
// Final benchmarks should be run with at least the default run length.
|
|
//config = config.AddJob (BenchmarkDotNet.Jobs.Job.ShortRun);
|
|
|
|
BenchmarkSwitcher
|
|
.FromAssembly (typeof (Program).Assembly)
|
|
.Run(args, config);
|
|
}
|
|
}
|