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.
*/
"label": "cargo build",
"type": "cargo",
"subcommand": "build",
"type": "process",
"command": "cargo",
"args": ["build"],
"problemMatcher": [
"$rustc"
],
@@ -52,9 +53,11 @@
},
{
"label": "cargo clean",
"type": "cargo",
"subcommand": "clean",
"type": "process",
"command": "cargo",
"args": ["clean"],
"problemMatcher": [],
"group": "build"
},
]
}
}