Remove framework gating

This commit is contained in:
Matt Nadareski
2023-11-07 20:57:05 -05:00
parent e582ce8726
commit 1f340bd244
368 changed files with 5 additions and 7413 deletions

View File

@@ -86,11 +86,7 @@
/// If you specify character strings in the class and title arrays, you must use Unicode strings. Use the
/// MultiByteToWideChar function to generate Unicode strings from ANSI strings.
/// </remarks>
#if NET48
public string ClassResource { get; set; }
#else
public string? ClassResource { get; set; }
#endif
/// <summary>
/// The ordinal value of a predefined system class.
@@ -109,11 +105,7 @@
/// If you specify character strings in the class and title arrays, you must use Unicode strings. Use the
/// MultiByteToWideChar function to generate Unicode strings from ANSI strings.
/// </remarks>
#if NET48
public string TitleResource { get; set; }
#else
public string? TitleResource { get; set; }
#endif
/// <summary>
/// An ordinal value of a resource, such as an icon, in an executable file
@@ -133,10 +125,6 @@
/// When the system creates the control, it passes a pointer to this data in the lParam parameter of the
/// WM_CREATE message that it sends to the control.
/// </summary>
#if NET48
public byte[] CreationData { get; set; }
#else
public byte[]? CreationData { get; set; }
#endif
}
}