General refactor and clean-up.

This commit is contained in:
2025-08-07 22:31:12 +01:00
parent 0683e2217b
commit 5f6bf00855
59 changed files with 6772 additions and 6828 deletions

View File

@@ -1,13 +1,12 @@
using BenchmarkDotNet.Running;
namespace Claunia.PropertyList.Benchmark
namespace Claunia.PropertyList.Benchmark;
internal class Program
{
internal class Program
static void Main(string[] args)
{
static void Main(string[] args)
{
BenchmarkRunner.Run<BinaryPropertyListParserBenchmarks>();
BenchmarkRunner.Run<BinaryPropertyListWriterBenchmarks>();
}
BenchmarkRunner.Run<BinaryPropertyListParserBenchmarks>();
BenchmarkRunner.Run<BinaryPropertyListWriterBenchmarks>();
}
}