Add launch task

This commit is contained in:
Michael Bradley 2025-03-05 19:33:11 -05:00
parent bd10e2f7a6
commit 478b2d8eef
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

28
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,28 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Launch",
"type": "cargo",
"command": "run",
"options": {
"env": {
"RUST_BACKTRACE": "full"
}
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": false
},
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}