Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VladimirAkopyan/9431f6a6627238c18037a9ad5b2d474a to your computer and use it in GitHub Desktop.
Save VladimirAkopyan/9431f6a6627238c18037a9ad5b2d474a to your computer and use it in GitHub Desktop.
VisualStudio Code Remote attach and debug
{
"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