Skip to content

Debugging Manually

Damian edited this page Oct 15, 2022 · 4 revisions

Console Debugging

After setting your breakpoint, you can now Deploy and Debug!

  1. Visual Studio > Extensions > Linux Debugger
  2. Select, Build, Deploy and Debug

GUI Debugging

To debug Linux GUI applications debugging, I'm currently working on a solution for that. For now, you can still use Build and Deploy followed by manually attaching to the process in Visual Studio to debug it.

  1. (VS) Linux Debugger > Build and Deploy
  2. Run the app on the remote machine via, dotnet MyApp.dll
  3. (VS) Debug > "Attach to Process..."
  4. Connection Type to, SSH
  5. Connection Target: "UserName@IPADDRESS" <enter>
    • If its the first time connecting to the machine
    • Input user credentials. Click, Connect
  6. Check, Managed (.NET Core for Unix)

Your system should begin debugging.

Clone this wiki locally