Created
June 8, 2018 13:02
-
-
Save VladimirAkopyan/9431f6a6627238c18037a9ad5b2d474a to your computer and use it in GitHub Desktop.
VisualStudio Code Remote attach and debug
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
{ | |
"name": ".NET Core Remote Attach", | |
"type": "coreclr", | |
"request": "attach", | |
"processId": "${command:pickRemoteProcess}", | |
"pipeTransport": | |
{ | |
"debuggerPath": "~/vsdbg/vsdbg", | |
"pipeCwd": "${workspaceFolder}", | |
"windows": { | |
"pipeProgram": "plink.exe", | |
"pipeArgs": [ "-l", "root", "-pw", "Docker!", "localhost", "-P", "2222", "-T" ], | |
"quoteArgs": true | |
}, | |
"osx": { | |
"pipeProgram": "ssh", | |
"pipeArgs": [ "root@localhost:2222" ], | |
"quoteArgs": true | |
}, | |
"linux": { | |
"pipeProgram": "ssh", | |
"pipeArgs": [ "root@localhost:2222" ], | |
"quoteArgs": true | |
} | |
}, | |
"sourceFileMap": { | |
"/src": "${workspaceFolder}", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment