{ "version": "0.2.0", "configurations": [ { "name": "Azure CLI Debug (Integrated Console)", "type": "debugpy", "request": "launch", "python": "${command:python.interpreterPath}", "program": "${workspaceRoot}/src/azure-cli/azure/cli/__main__.py", "cwd": "${workspaceRoot}", "args": [ "--help" ], "console": "integratedTerminal", "justMyCode": false }, { "name": "Azure CLI Debug (External Console)", "type": "debugpy", "request": "launch", "stopOnEntry": true, "python": "${command:python.interpreterPath}", "program": "${workspaceRoot}/src/azure-cli/azure/cli/__main__.py", "cwd": "${workspaceRoot}", "args": [ "--version" ], "console": "externalTerminal", }, { "name": "Azdev Scripts", "type": "debugpy", "request": "launch", "python": "${command:python.interpreterPath}", "program": "${workspaceRoot}/tools/automation/__main__.py", "cwd": "${workspaceRoot}", "args": [ "--help" ], "console": "integratedTerminal", }, { "name": "Azure CLI Debug Tab Completion (External Console)", "type": "debugpy", "request": "launch", "program": "${workspaceFolder}/src/azure-cli/azure/cli/__main__.py", "args": [], "console": "externalTerminal", "cwd": "${workspaceFolder}", "env": { "_ARGCOMPLETE": "1", "COMP_LINE": "az vm create --", "COMP_POINT": "18", "_ARGCOMPLETE_SUPPRESS_SPACE": "0", "_ARGCOMPLETE_IFS": "\n", "_ARGCOMPLETE_SHELL": "powershell", "ARGCOMPLETE_USE_TEMPFILES": "1", "_ARGCOMPLETE_STDOUT_FILENAME": "C:\\temp\\az_debug_completion.txt" }, "justMyCode": false } ] }