Fix warnings from nullabilty

This commit is contained in:
Matt Nadareski
2023-09-04 21:14:41 -04:00
parent 46824bd91d
commit 0e23d131fe
212 changed files with 3018 additions and 1 deletions

View File

@@ -64,7 +64,11 @@
/// set in the dwFileFlags member of the VS_FIXEDFILEINFO structure. For example, Value
/// could be "Private build for Olivetti solving mouse problems on M250 and M250E computers".
/// </summary>
#if NET48
public string Key;
#else
public string? Key;
#endif
/// <summary>
/// As many zero words as necessary to align the Value member on a 32-bit boundary.
@@ -74,6 +78,10 @@
/// <summary>
/// A zero-terminated string. See the szKey member description for more information.
/// </summary>
#if NET48
public string Value;
#else
public string? Value;
#endif
}
}