Add VS Code F5 launch profiles for Edge and Firefox

This commit is contained in:
2026-02-26 08:33:09 +01:00
parent 11ab7c959b
commit 0ec19bf682
4 changed files with 95 additions and 1 deletions

21
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/RpgRoller.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}