microsoft / vscode-mono-debug

A simple VS Code debug adapter for mono
Other
159 stars 173 forks source link

How to debug this debugger #44

Closed prashantvc closed 6 years ago

prashantvc commented 6 years ago

I have following config in my launch.json

{
    "type": "mono",
    "request": "launch",
    "name": "Server",
    "program": "${workspaceRoot}/bin/Debug/mono-debug.exe",
    "cwd": "${workspaceRoot}",
    "debugServer": 4711
}

When start debugging with server, I get the this error connect ECONNREFUSED 127.0.0.1:4711 what is the right way to debug this extension

prashantvc commented 6 years ago

nevermind, I had to add the "debugServer": 4711 in the test project