feat: Updates to .NET 9 (#1984)
### Summary * Bumps to .NET 9 with updated dependencies * Comparing a value type against null is no longer allowed * CI/CD now uses the version specified in global.json * Serialization generator updated to .NET 9 with bug fixes, fixes to turkish language, and parallelization
This commit is contained in:
parent
51d15d264c
commit
c75514cc04
24 changed files with 56 additions and 58 deletions
|
|
@ -98,7 +98,7 @@ public static class Localization
|
|||
{
|
||||
using var fs = new FileStream(file, FileMode.Open, FileAccess.Read, FileShare.Read);
|
||||
Span<byte> header = stackalloc byte[6];
|
||||
fs.Read(header);
|
||||
_ = fs.Read(header);
|
||||
|
||||
byte[] data;
|
||||
BufferReader br;
|
||||
|
|
@ -120,7 +120,7 @@ public static class Localization
|
|||
else
|
||||
{
|
||||
data = GC.AllocateUninitializedArray<byte>((int)fs.Length - 6);
|
||||
fs.Read(data);
|
||||
_ = fs.Read(data);
|
||||
br = new BufferReader(data);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue