123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "go: build",
- "type": "shell",
- "command": "go",
- "args": [
- "build",
- "-o",
- "bin/3x-ui.exe",
- "./main.go"
- ],
- "options": {
- "cwd": "${workspaceFolder}"
- },
- "problemMatcher": [
- "$go"
- ],
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "label": "go: run",
- "type": "shell",
- "command": "go",
- "args": [
- "run",
- "./main.go"
- ],
- "options": {
- "cwd": "${workspaceFolder}",
- "env": {
- "XUI_DEBUG": "true"
- }
- },
- "problemMatcher": [
- "$go"
- ]
- },
- {
- "label": "go: test",
- "type": "shell",
- "command": "go",
- "args": [
- "test",
- "./..."
- ],
- "options": {
- "cwd": "${workspaceFolder}"
- },
- "problemMatcher": [
- "$go"
- ],
- "group": "test"
- },
- {
- "label": "go: vet",
- "type": "shell",
- "command": "go",
- "args": [
- "vet",
- "./..."
- ],
- "options": {
- "cwd": "${workspaceFolder}"
- },
- "problemMatcher": [
- "$go"
- ]
- }
- ]
- }
|