Mitgliederladen/hello_world/.vscode/tasks.json

18 lines
348 B
JSON
Raw Normal View History

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