2023-06-29 09:16:17 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-02-19 20:56:52 +01:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-06-29 16:28:27 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
|
2023-06-29 09:16:17 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
|
2023-06-22 08:09:40 +02:00
|
|
|
|
|
|
|
|
|
|
<!--The following packages are included anyway due to dependencies-->
|
|
|
|
|
|
<!--<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="7.0.0" />-->
|
2023-06-29 09:16:17 +02:00
|
|
|
|
<!--<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />-->
|
2022-02-19 20:56:52 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="appsettings.json">
|
2023-06-29 09:16:17 +02:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2022-02-19 20:56:52 +01:00
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|