From 19ebe2b956f5df49702805502a7d973222a87807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=99=BA=E8=B6=85?= <1012112796@qq.com> Date: Tue, 17 Mar 2020 00:46:26 +0800 Subject: [PATCH] misc: change the "taskName" to "label" in vscode tasks.json (#10739) because of vscode suggest ref ISSUE: Microsoft/vscode-docs#1181 Signed-off-by: a1012112796 <1012112796@qq.com> --- contrib/ide/vscode/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/ide/vscode/tasks.json b/contrib/ide/vscode/tasks.json index ac42806d6..a9876f710 100644 --- a/contrib/ide/vscode/tasks.json +++ b/contrib/ide/vscode/tasks.json @@ -2,7 +2,7 @@ "version": "2.0.0", "tasks": [ { - "taskName": "Build", + "label": "Build", "type": "shell", "command": "go", "group": "build", @@ -25,7 +25,7 @@ "problemMatcher": ["$go"] }, { - "taskName": "Build (with SQLite3)", + "label": "Build (with SQLite3)", "type": "shell", "command": "go", "group": "build",