{ "version": "2.0.0", "type": "shell", "command": "go", "options": { "cwd": "${workspaceFolder}", }, "presentation": { "reveal": "never", "revealProblems": "onProblem", }, "tasks": [ { "label": "Build Project", "args": [ "build", "-o", "build/", "./..." ], "group": { "kind": "build", "isDefault": true }, "options": { "env": { "CGO_ENABLED": "0" } }, "problemMatcher": [] } ], }