applicationhealth-extension.../.vscode/tasks.json

35 строки
787 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "make devcontainer",
"command": "make",
"args": [
"devcontainer"
],
"type": "shell",
"group": "build",
"problemMatcher": []
},
{
"label": "make binary",
"command": "make",
"args": [
"binary"
],
"type": "shell",
"group": "build",
"problemMatcher": []
},
{
"label": "make testenv",
"command": "make",
"args": [
"testenv"
],
"type": "shell",
"group": "build",
"problemMatcher": []
}
]
}