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

@@ -6,46 +6,26 @@ namespace SabreTools.Models.N3DS
/// <summary>
/// InitialData
/// </summary>
#if NET48
public InitialData InitialData { get; set; }
#else
public InitialData? InitialData { get; set; }
#endif
/// <summary>
/// CardDeviceReserved1
/// </summary>
#if NET48
public byte[] CardDeviceReserved1 { get; set; }
#else
public byte[]? CardDeviceReserved1 { get; set; }
#endif
/// <summary>
/// TitleKey
/// </summary>
#if NET48
public byte[] TitleKey { get; set; }
#else
public byte[]? TitleKey { get; set; }
#endif
/// <summary>
/// CardDeviceReserved2
/// </summary>
#if NET48
public byte[] CardDeviceReserved2 { get; set; }
#else
public byte[]? CardDeviceReserved2 { get; set; }
#endif
/// <summary>
/// TestData
/// </summary>
#if NET48
public TestData TestData { get; set; }
#else
public TestData? TestData { get; set; }
#endif
}
}