Mitgliederladen/hello_world/.vscode/tasks.json
2023-06-02 15:06:11 +02:00

17 lines
348 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Cargo Build",
"type": "shell",
"command": "cargo build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$rustc"
]
}
]
}