cs11dotnet7/vscode/Chapter04/Instrumenting/Instrumenting.csproj

27 lines
966 B
XML
Raw Normal View History

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>
<!--Do NOT use version 7.0.3 or 7.0.4 because they have a bug that causes an exception.-->
2023-06-29 09:16:17 +02:00
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<!--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>