зеркало из https://github.com/microsoft/azure-cli.git
35 строки
840 B
JSON
35 строки
840 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|
|
]
|
|
} |