mirror of
https://github.com/claunia/plist-cil.git
synced 2025-12-16 19:14:26 +00:00
12 lines
286 B
C#
12 lines
286 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Claunia.PropertyList.Benchmark;
|
|
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
BenchmarkRunner.Run<BinaryPropertyListParserBenchmarks>();
|
|
BenchmarkRunner.Run<BinaryPropertyListWriterBenchmarks>();
|
|
}
|
|
} |