Add .NET 9 to target frameworks

This commit is contained in:
Matt Nadareski
2024-11-13 04:26:26 -05:00
parent 622f36b056
commit 864fa8d3f8
14 changed files with 126 additions and 26 deletions

View File

@@ -76,7 +76,7 @@ namespace ExtractionTool
byte[] magic = new byte[16];
try
{
stream.Read(magic, 0, 16);
int read = stream.Read(magic, 0, 16);
stream.Seek(0, SeekOrigin.Begin);
}
catch (Exception ex)