cs11dotnet7/vscode/Chapter06/WarningsAsErrors/WarningsAsErrors.csproj

12 lines
298 B
XML
Raw Normal View History

2022-09-17 20:16:13 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
</Project>