2025-01-08 19:38:39 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-06-19 11:16:14 +02:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2025-08-07 22:00:31 +01:00
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2018-06-19 11:16:14 +02:00
|
|
|
<RootNamespace>Claunia.PropertyList.Benchmark</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-08-07 22:31:12 +01:00
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.15.2"/>
|
2018-06-19 11:16:14 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-08-07 22:31:12 +01:00
|
|
|
<ProjectReference Include="..\plist-cil\plist-cil.csproj"/>
|
2018-06-19 11:16:14 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="plist.bin">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|