powercollect/.vscode/tasks.json
Thomas Klaehn 6d9b0da10a Initial commit
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2022-11-09 09:32:41 +01:00

16 lines
384 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": "make all",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}