Merge pull request #83 from david-boles/patch-1
Corrected default VSCode build task.
This commit is contained in:
13
.vscode/tasks.json
vendored
13
.vscode/tasks.json
vendored
@@ -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"
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user