mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
enable_attach should spawn adapter (#1784)
* Spawn adapter in enable attach. * Addressing comments and simplifying * Minor tweaks
This commit is contained in:
parent
0825dbeb37
commit
636400a24a
7 changed files with 122 additions and 45 deletions
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
|
|
@ -5,13 +5,13 @@
|
|||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "ptvsd.adapter --debug-server",
|
||||
"name": "ptvsd.adapter --port",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"console": "integratedTerminal",
|
||||
"consoleTitle": "ptvsd.adapter",
|
||||
"program": "${workspaceFolder}/src/ptvsd/adapter",
|
||||
"args": ["--debug-server", "8765", "--cls"],
|
||||
"args": ["--port", "8765", "--cls"],
|
||||
"customDebugger": true,
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue