Files
lookupip/.vscode/tasks.json

26 lines
687 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Go Build",
"type": "shell",
"command": "go build -o bin/",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent",
"clear": true
}
},
{
"label": "Go Test All",
"type": "shell",
"command": "go test ./...",
"problemMatcher": []
}
]
}