gbserver/.vscode/tasks.json

15 lines
294 B
JSON
Raw Normal View History

2024-12-26 10:09:39 -03:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "cargo",
"args": ["build"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}