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

@@ -31,11 +31,7 @@
/// A string that gives the Type, Name, or Language ID entry, depending on
/// level of table.
/// </summary>
#if NET48
public ResourceDirectoryString Name { get; set; }
#else
public ResourceDirectoryString? Name { get; set; }
#endif
/// <summary>
/// A 32-bit integer that identifies the Type, Name, or Language ID entry.
@@ -54,11 +50,7 @@
/// <summary>
/// Resource data entry (a leaf).
/// </summary>
#if NET48
public ResourceDataEntry DataEntry { get; set; }
#else
public ResourceDataEntry? DataEntry { get; set; }
#endif
/// <summary>
/// High bit 1. The lower 31 bits are the address of another resource
@@ -69,11 +61,7 @@
/// <summary>
/// Another resource directory table (the next level down).
/// </summary>
#if NET48
public ResourceDirectoryTable Subdirectory { get; set; }
#else
public ResourceDirectoryTable? Subdirectory { get; set; }
#endif
#endregion
}