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

@@ -14,11 +14,7 @@ namespace SabreTools.Models.MSDOS
/// <summary>
/// MS-DOS executable header
/// </summary>
#if NET48
public ExecutableHeader Header { get; set; }
#else
public ExecutableHeader? Header { get; set; }
#endif
/// <summary>
/// After loading the executable into memory, the program loader goes through
@@ -28,10 +24,6 @@ namespace SabreTools.Models.MSDOS
/// make the loader add start segment address to the value at offset
/// 1*0x10+0x1A=0x2A within the program data.
/// </summary>
#if NET48
public RelocationEntry[] RelocationTable { get; set; }
#else
public RelocationEntry?[]? RelocationTable { get; set; }
#endif
}
}