diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000000..66682b4da8b --- /dev/null +++ b/.vscode/launch.json @@ -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" + ] + } + ] +} \ No newline at end of file