Files
Zxq5-OS/.vscode/tasks.json
T
FantasyPvP e491435dea ok
ok
2023-03-10 00:25:08 +00:00

21 lines
456 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "cargo run",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"run",
// "--release",
// "--",
// "arg1"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}