Created
April 6, 2023 00:24
-
-
Save brianmed/72f353fdf2b5bc140baa8012b2226a68 to your computer and use it in GitHub Desktop.
Visual Studio Code Remote Debugging Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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