Skip to content

Instantly share code, notes, and snippets.

@brianmed
Created April 6, 2023 00:24
Show Gist options
  • Save brianmed/72f353fdf2b5bc140baa8012b2226a68 to your computer and use it in GitHub Desktop.
Save brianmed/72f353fdf2b5bc140baa8012b2226a68 to your computer and use it in GitHub Desktop.
Visual Studio Code Remote Debugging Example
{
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"program": "app.dll",
"args": ["--urls=http://*:8000"],
"cwd": "/home/bpm/appDirectory",
"stopAtEntry": false,
"console": "internalConsole",
"pipeTransport": {
"pipeCwd": "${workspaceFolder}",
"pipeProgram": "/usr/bin/ssh",
"pipeArgs": ["bpm@joy-hostname"],
"debuggerPath": "/home/bpm/bin/vsdbg/vsdbg"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment