gbserver/.vscode/tasks.json
2024-12-26 10:09:39 -03:00

15 lines
No EOL
294 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "cargo",
"args": ["build"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}