paramod-rust/.vscode/tasks.json

28 lines
741 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "cargo build",
"type": "shell",
"command": ".vscode/cargo-build-version.sh",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$codelldb-rustc"]
},
{
"label": "cargo reset version placeholder",
"type": "shell",
"command": "bash .vscode/cargo-reset-version.sh",
"problemMatcher": []
},
{
"label": "cargo run",
"type": "shell",
"command": "bash .vscode/cargo-run-version.sh",
"problemMatcher": ["$codelldb-rustc"]
}
]
}