2023-01-03 10:41:30 +01:00
<Project>
<PropertyGroup>
<EmbeddedResourceUseDependentUponConvention>true</EmbeddedResourceUseDependentUponConvention>
2025-06-05 18:35:10 +02:00
<TargetFramework>net48</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
2023-01-03 10:41:30 +01:00
</PropertyGroup>
2025-06-05 18:35:10 +02:00
<!-- latest versions of nuget packages where older versions are indirectly included through other libraries; this should avoid a flood of compiler warnings -->
<!--
2025-01-28 21:26:53 +01:00
<ItemGroup>
2025-06-05 18:35:10 +02:00
<None Include="..\app.config" Link="app.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2025-01-28 21:26:53 +01:00
</ItemGroup>
2025-06-05 18:35:10 +02:00
-->
2025-01-28 21:26:53 +01:00
<ItemGroup>
2025-06-05 18:35:10 +02:00
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
<PackageReference Include="System.Numerics.Vectors" Version="4.6.1" />
<PackageReference Include="System.Buffers" Version="4.6.1" />
<PackageReference Include="System.Memory" Version="4.6.3" />
2025-01-28 21:26:53 +01:00
</ItemGroup>
2023-01-03 10:41:30 +01:00
</Project>