mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-14 21:35:10 +00:00
Remove framework gating
This commit is contained in:
@@ -17,19 +17,11 @@ namespace SabreTools.Models.PortableExecutable
|
||||
/// <summary>
|
||||
/// An array of structures. The array is the size indicated by the NumberOfBlocks member.
|
||||
/// </summary>
|
||||
#if NET48
|
||||
public MessageResourceBlock[] Blocks { get; set; }
|
||||
#else
|
||||
public MessageResourceBlock?[]? Blocks { get; set; }
|
||||
#endif
|
||||
|
||||
/// <summary>
|
||||
/// Message resource entries
|
||||
/// </summary>
|
||||
#if NET48
|
||||
public Dictionary<uint, MessageResourceEntry> Entries { get; set; }
|
||||
#else
|
||||
public Dictionary<uint, MessageResourceEntry?>? Entries { get; set; }
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user