Files
minesweeper/.vscode/tasks.json
2023-08-06 17:40:50 +02:00

17 lines
365 B
JSON

{
"tasks": [
{
"label": "cargo tauri dev",
"type": "shell",
"command": "cargo", // note: full path to the cargo
"args": [
"tauri",
"dev"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}