From 2c6b46ee2d761f406949ff831238ca77ce7c32b4 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Fri, 1 Dec 2017 23:18:25 +0100 Subject: [PATCH] update vscode config --- .vscode/tasks.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 9a035c9de..b49cfb5b7 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,13 +1,18 @@ { - "version": "0.1.0", + "version": "2.0.0", "command": "go", - "isShellCommand": true, - "showOutput": "always", + "type": "shell", + "presentation": { + "echo": true, + "reveal": "always", + "focus": false, + "panel": "shared" + }, "tasks": [ { - "taskName": "build", + "label": "build", "args": ["v2ray.com/core/..."], - "isBuildCommand": true, + "group": "build", "problemMatcher": { "owner": "go", "fileLocation": ["relative", "${workspaceRoot}"], @@ -20,9 +25,9 @@ } }, { - "taskName": "test", + "label": "test", "args": ["-p", "1", "v2ray.com/core/..."], - "isBuildCommand": false + "group": "test" } ] } \ No newline at end of file