From 504d378a6eb6bca3d4e8f5ec6006a9b6ef038a71 Mon Sep 17 00:00:00 2001 From: Per Lindgren <per.lindgren@ltu.se> Date: Fri, 16 Mar 2018 09:47:44 +0100 Subject: [PATCH] vscode --- .vscode/tasks.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 9566276..cc7543b 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -3,6 +3,30 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ + { + "type": "shell", + "label": "cargo build", + "command": "cargo build", + "problemMatcher": [ + "$rustc" + ], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "type": "shell", + "label": "cargo expand > expand.rs", + "command": "cargo expand > expand.rs", + "problemMatcher": [ + "$rustc" + ], + "group": { + "kind": "build", + "isDefault": true + } + }, { "type": "shell", "label": "cargo run --example ex_lit", -- GitLab