This commit is contained in:
2024-10-21 11:55:12 -07:00
parent 59db921a65
commit 61cbb37001
7 changed files with 79 additions and 54 deletions

17
.vscode/tasks.json vendored
View File

@ -36,6 +36,23 @@
"${workspaceFolder}/WinLog.csproj"
],
"problemMatcher": "$msCompile"
},
{
"label": "Publish AOT",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"-r",
"win-x64",
"-c",
"Release",
"-p:PublishAot=true",
"${workspaceFolder}/WinLog.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}