Browse Source

misc: change the "taskName" to "label" in vscode tasks.json (#10739)

because of vscode suggest
ref ISSUE: Microsoft/vscode-docs#1181

Signed-off-by: a101211279 <1012112796@qq.com>
tags/v1.13.0-dev
赵智超 4 years ago
parent
commit
19ebe2b956
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      contrib/ide/vscode/tasks.json

+ 2
- 2
contrib/ide/vscode/tasks.json View File

"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"taskName": "Build",
"label": "Build",
"type": "shell", "type": "shell",
"command": "go", "command": "go",
"group": "build", "group": "build",
"problemMatcher": ["$go"] "problemMatcher": ["$go"]
}, },
{ {
"taskName": "Build (with SQLite3)",
"label": "Build (with SQLite3)",
"type": "shell", "type": "shell",
"command": "go", "command": "go",
"group": "build", "group": "build",

Loading…
Cancel
Save