From 0c11a70d284eb544aee4555ae50b289ae2552e69 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Thu, 18 Jun 2020 15:58:02 -0500 Subject: [PATCH] Add VSCode build task. --- .vscode/tasks.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..51d3fa3 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,20 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "cargo", + "command": "build", + "problemMatcher": [ + "$rustc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "label": "rust: cargo build, + "presentation": { + "reveal": "never" + } + } + ] +} \ No newline at end of file