From e5e0044c427189bab411acb9374968a663e26754 Mon Sep 17 00:00:00 2001 From: Johan Stenberg Date: Mon, 22 Feb 2016 17:26:08 -0800 Subject: [PATCH] Add Python3 configuration to launch.json + change from tab to two spaces --- .vscode/launch.json | 51 +++++++++++++++++++++++++++++---------------- 1 file changed, 33 insertions(+), 18 deletions(-) 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