Enable nullable reference types in Oakton project. This enables nullability warnings for the project (a number of them are reported now). Also, it will default newly added files to be nullable-enabled.
Prior nullable-oblivious types are preserved by adding #nullable disable annotations to nearly all files (apart from two that had #nullable enable pragmas, some files in Internal.Conversions that used nullable references in signatures, and some files where the pragma is clearly redundant).
Enable nullable reference types in Oakton project. This enables nullability warnings for the project (a number of them are reported now). Also, it will default newly added files to be nullable-enabled.
Prior nullable-oblivious types are preserved by adding
#nullable disable annotations
to nearly all files (apart from two that had#nullable enable
pragmas, some files inInternal.Conversions
that used nullable references in signatures, and some files where the pragma is clearly redundant).