1
0
mirror of https://github.com/Sarsoo/csbindgen.git synced 2025-01-13 14:57:47 +00:00
csbindgen/.vscode/tasks.json
2023-02-27 03:31:44 +09:00

17 lines
227 B
JSON

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