Merge pull request #8 from johanste/master

Add launch.json for debugging support in vscode
This commit is contained in:
Johan Stenberg (MSFT) 2016-02-19 17:08:47 -08:00
Родитель a3a6cd697f d70a0b1ad8
Коммит 119324eff2
1 изменённых файлов: 20 добавлений и 0 удалений

20
.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -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"
]
}
]
}