Files
GodotHelpers/.vscode/tasks.json

40 lines
853 B
JSON
Raw Normal View History

2026-04-10 18:59:27 -04:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"--no-restore"
],
"problemMatcher": "$msCompile",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
}
},
{
"label": "coverage",
"group": "test",
"command": "${workspaceFolder}/GodotHelper.Tests/coverage.sh",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/GodotHelper.Tests"
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
},
]
}