62 строки
2.0 KiB
JSON
62 строки
2.0 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "devcontainer run - install",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "exec",
|
|
"program": "/var/lib/waagent/Extension/bin/applicationhealth-extension",
|
|
"cwd": "${workspaceFolder}",
|
|
"args" : [
|
|
"install"
|
|
]
|
|
},
|
|
{
|
|
"name": "devcontainer run - uninstall",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "exec",
|
|
"program": "/var/lib/waagent/Extension/bin/applicationhealth-extension",
|
|
"cwd": "${workspaceFolder}",
|
|
"args" : [
|
|
"uninstall"
|
|
],
|
|
"preLaunchTask": "make devcontainer"
|
|
},
|
|
{
|
|
"name": "devcontainer run - enable",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "exec",
|
|
"program": "/var/lib/waagent/Extension/bin/applicationhealth-extension",
|
|
"cwd": "${workspaceFolder}",
|
|
"args" : [
|
|
"enable"
|
|
],
|
|
"preLaunchTask": "make devcontainer"
|
|
},
|
|
{
|
|
"name": "Run integration tests",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "./integration-test/run.sh",
|
|
"cwd": "${workspaceFolder}",
|
|
"preLaunchTask": "make binary"
|
|
},
|
|
{
|
|
"name": "devcontainer run - enable NOBUILD",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "exec",
|
|
"program": "/var/lib/waagent/Extension/bin/applicationhealth-extension",
|
|
"cwd": "${workspaceFolder}",
|
|
"args" : [
|
|
"enable"
|
|
]
|
|
}
|
|
]
|
|
} |