activitycollect/.vscode/tasks.json
2022-11-13 07:40:08 +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
}
}
]
}