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