Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.96 KB | None | 0 0
  1. {
  2.     "name": ".NET Core Launch (remote console)",
  3.     "type": "coreclr",
  4.     "request": "launch",
  5.     "preLaunchTask": "deploy",
  6.     "program": "/home/pi/dotnet/dotnet",  // Path to .net
  7.     "args": ["/home/pi/raspberry-test/Raspberry-test.dll"], // Path to your deployed App
  8.     "cwd": "~/raspberry-test", // Root folder. Here - your app path
  9.     "stopAtEntry": false,
  10.     "console": "internalConsole",
  11.     "pipeTransport": {
  12.         "pipeCwd": "${workspaceFolder}",
  13.         "pipeProgram": "PLINK",  // App that used for information transfer (from Putty)
  14.         "pipeArgs": [
  15.             "-i",  // Use private key for connection. Could be replaced with -pw and password
  16.             "privatekey.ppk",  // Private SSH key. Could be replaced with password
  17.             "pi@192.168.1.10"  // Raspberry login name and IP address
  18.         ],
  19.         "debuggerPath": "/home/pi/vsdbg/vsdbg" // Path to vsdbg executable
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement