2023-08-12 19:08:38 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2025-01-11 08:31:59 +03:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2025-01-11 08:33:58 +03:00
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2025-01-11 08:31:59 +03:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
|
|
<GarbageCollectionAdaptationMode>1</GarbageCollectionAdaptationMode>
|
|
|
|
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
|
|
|
|
</PropertyGroup>
|
2023-08-12 19:08:38 +01:00
|
|
|
|
2025-01-11 08:31:59 +03:00
|
|
|
<ItemGroup>
|
2025-01-13 20:05:36 +03:00
|
|
|
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0"/>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="9.0.0"/>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0"/>
|
2025-01-11 08:31:59 +03:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0"/>
|
2025-01-13 20:05:36 +03:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="9.0.0"/>
|
2025-01-11 08:31:59 +03:00
|
|
|
<PackageReference Include="YamlDotNet" Version="13.0.0"/>
|
|
|
|
</ItemGroup>
|
2023-08-12 19:08:38 +01:00
|
|
|
|
2025-01-11 08:31:59 +03:00
|
|
|
<ItemGroup>
|
|
|
|
<None Update="Config\forced_loose.yaml">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Config\forced_static.yaml">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Config\config.json">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
2023-08-12 19:08:38 +01:00
|
|
|
|
|
|
|
</Project>
|