Skip to content

Instantly share code, notes, and snippets.

@vlad-bezden
Created August 1, 2019 15:12
Show Gist options
  • Save vlad-bezden/a34c3fde30b7b743d3431b05e871a3d1 to your computer and use it in GitHub Desktop.
Save vlad-bezden/a34c3fde30b7b743d3431b05e871a3d1 to your computer and use it in GitHub Desktop.
VS Code configuration for go build project (Ctrl+Shift+B)
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "go build <project name>",
"group": {
"kind": "build",
"isDefault": true
}
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment