2023-08-12 19:08:38 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-01-17 17:04:43 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-08-12 19:08:38 +01:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
|
|
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="7z.Libs" Version="21.7.0" />
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
|
|
|
<PackageReference Include="NumSharp" Version="0.30.0" />
|
2024-08-22 15:33:27 -04:00
|
|
|
<PackageReference Include="SevenZipSharp.Interop" Version="19.1.0" />
|
2023-08-12 19:08:38 +01:00
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
|
|
|
|
<PackageReference Include="YamlDotNet" Version="13.0.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Update="Config\forced_loose.yaml">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Config\forced_static.yaml">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Config\map_directory_mapping.yaml">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Config\config.json">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|