github.com/amitbet/vnc2video@v0.0.0-20190616012314-9d50b9dab1d9/.vscode/tasks.json (about)

     1  {
     2      "version": "0.1.0",
     3      "command": "go",
     4      "isShellCommand": true,
     5      "echoCommand": true,
     6      "showOutput": "always",
     7      // "showOutput": "silent",
     8      "options": {
     9          //  "env": {
    10          //      "GOPATH": "/Users/lukeh/dd/go"
    11          //  }
    12      },
    13      "tasks": [
    14          {
    15              "taskName": "install",
    16              "args": [
    17                  "-v",
    18                  "./..."
    19              ],
    20              "osx": {
    21                  "options": {
    22                      "env": {
    23                          //"GOPATH": "${env.HOME}/Dropbox/go"
    24                      }
    25                  }
    26              },
    27              "windows": {
    28                  "options": {
    29                      "env": {
    30                          //"GOPATH": "${env.USERPROFILE}\\Dropbox\\go"
    31                      }
    32                  }
    33              },
    34              "isBuildCommand": true,
    35              "problemMatcher": "$go"
    36          },
    37          {
    38              "taskName": "test",
    39              "args": [
    40                  "-v",
    41                  "./..."
    42              ],
    43              "isTestCommand": true
    44          }
    45      ]
    46  }