2026-02-14 19:20:25 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
|
2026-02-15 01:03:26 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.3" />
|
2026-02-14 19:20:25 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\MaddoShared\MaddoShared.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|