From 197312d48ba94489b93d12fa5de56a0f0fbcf153 Mon Sep 17 00:00:00 2001 From: James Woodall Date: Sun, 17 Jun 2018 09:46:05 +0100 Subject: [PATCH] Updated to Tasks "2.0.0" format --- .vscode/tasks.json | 43 +++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a46c68b..62899b7 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,31 +1,34 @@ { - "version": "0.1.0", - "osx": { - "command": "/bin/bash", - "options": { - "cwd": "${workspaceRoot}" - }, - "tasks": [ - { - "taskName": "buildForDebug", - "suppressTaskName": true, + "version": "2.0.0", + "tasks": [ + { + "label": "buildForDebug", + "type": "shell", + "osx": { + "command": "/bin/bash", "args": [ "-c", "./scripts/dockerTask.sh buildForDebug" ], - "isBuildCommand": false, - "showOutput": "always" }, - { - "taskName": "cleanup", - "suppressTaskName": true, + "problemMatcher": [ + "$msCompile" + ], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "cleanup", + "type": "shell", + "osx": { + "command": "/bin/bash", "args": [ "-c", "./scripts/dockerTask.sh cleanup" - ], - "isBuildCommand": false, - "showOutput": "always" + ] } - ] - } + } + ] } \ No newline at end of file