Update SabreTools libraries and add .NET 9 support (#1)

* Update SabreTools libraries and add .NET 9 support

* Update build script

* Handle net9.0-specific complaints
This commit is contained in:
Matt Nadareski
2024-11-16 11:45:12 +09:00
committed by GitHub
parent 82d53db68f
commit 0761450a8d
5 changed files with 58 additions and 39 deletions
+24
View File
@@ -0,0 +1,24 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "shell",
"args": [
"build",
// Ask dotnet build to generate full paths for file names.
"/property:GenerateFullPaths=true",
// Do not generate summary otherwise it leads to duplicate errors in Problems panel
"/consoleloggerparameters:NoSummary"
],
"group": "build",
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
}
]
}