Treating null warnings as errors

This commit is contained in:
Thorsten Sommer 2024-05-04 11:19:55 +02:00
parent bc2a297fc5
commit 071f161d2a
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -3,6 +3,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>AIStudio</RootNamespace> <RootNamespace>AIStudio</RootNamespace>
<AssemblyName>mindworkAIStudio</AssemblyName> <AssemblyName>mindworkAIStudio</AssemblyName>