зеркало из https://github.com/microsoft/azure-cli.git
Merge pull request #8 from johanste/master
Add launch.json for debugging support in vscode
This commit is contained in:
Коммит
119324eff2
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Python",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"stopOnEntry": true,
|
||||||
|
"pythonPath":"python",
|
||||||
|
"program": "${workspaceRoot}/src/azure/cli/__main__.py",
|
||||||
|
"cwd": "${workspaceRoot}/src",
|
||||||
|
"args": ["login", "--help"],
|
||||||
|
"debugOptions": [
|
||||||
|
"WaitOnAbnormalExit",
|
||||||
|
"WaitOnNormalExit",
|
||||||
|
"RedirectOutput"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Загрузка…
Ссылка в новой задаче