cs11dotnet7/vscode/Chapter06/WarningsAsErrors/WarningsAsErrors.csproj
2022-09-17 19:16:13 +01:00

12 lines
298 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
</Project>