1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-16 12:45:24 +00:00

update vscode config

This commit is contained in:
Darien Raymond 2017-12-01 23:18:25 +01:00
parent b3d9433036
commit 2c6b46ee2d
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

19
.vscode/tasks.json vendored
View File

@ -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"
}
]
}