Skip to content

Commit bec2b31

Browse files
committed
Disable nullable reference types in project
Changed the Nullable setting from 'enable' to 'disable' in APIGenerator.csproj. This will turn off nullable reference type warnings and analysis for the project.
1 parent 04df03c commit bec2b31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

APIGenerator/APIGenerator/APIGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
7+
<Nullable>disable</Nullable>
88
</PropertyGroup>
99

1010
<ItemGroup>

0 commit comments

Comments
 (0)