mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-23 15:16:14 +00:00
Remove framework gating
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user