Files
TentacleBot/.vscode/tasks.json
Garret Patti 3064e93011 init commit
2026-07-04 20:43:38 -04:00

45 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "shell",
"args": [
"build",
"--configuration",
"Debug"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "run",
"command": "dotnet",
"type": "shell",
"args": [
"run",
"--no-build"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "test",
"isDefault": true
},
"isBackground": false
},
{
"label": "clean",
"command": "dotnet",
"type": "shell",
"args": [
"clean"
],
"problemMatcher": "$msCompile"
}
]
}