1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-30 11:05:24 +00:00
v2fly/.vscode/tasks.json
2017-04-16 21:04:15 +02:00

28 lines
598 B
JSON

{
"version": "0.1.0",
"command": "go",
"isShellCommand": true,
"showOutput": "always",
"tasks": [
{
"taskName": "build",
"args": ["v2ray.com/core/..."],
"isBuildCommand": true,
"problemMatcher": {
"owner": "go",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^([^:]+\\.go):(\\d+):(.*)",
"file": 1,
"line": 2,
"message": 3
}
}
},
{
"taskName": "test",
"args": ["-p", "1", "v2ray.com/core/..."],
"isBuildCommand": false
}
]
}