Merge pull request #83 from david-boles/patch-1

Corrected default VSCode build task.
This commit is contained in:
Adam Greig
2020-03-05 11:29:07 +00:00
committed by GitHub

13
.vscode/tasks.json vendored
View File

@@ -10,8 +10,9 @@
* so we can invoke it from the debug launcher. * so we can invoke it from the debug launcher.
*/ */
"label": "cargo build", "label": "cargo build",
"type": "cargo", "type": "process",
"subcommand": "build", "command": "cargo",
"args": ["build"],
"problemMatcher": [ "problemMatcher": [
"$rustc" "$rustc"
], ],
@@ -52,9 +53,11 @@
}, },
{ {
"label": "cargo clean", "label": "cargo clean",
"type": "cargo", "type": "process",
"subcommand": "clean", "command": "cargo",
"args": ["clean"],
"problemMatcher": [],
"group": "build" "group": "build"
}, },
] ]
} }