diff --git a/.vscode/launch.json b/.vscode/launch.json index 66682b4da8b..7e182b10933 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,20 +1,35 @@ { - "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" - ] - } - ] + "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" + ] + }, + { + "name": "Python3", + "type": "python", + "request": "launch", + "stopOnEntry": true, + "pythonPath":"python3", + "program": "${workspaceRoot}/src/azure/cli/__main__.py", + "cwd": "${workspaceRoot}/src", + "args": ["login", "--help"], + "debugOptions": [ + "WaitOnAbnormalExit", + "WaitOnNormalExit", + "RedirectOutput" + ] + } + ] } \ No newline at end of file