.Net CoreC#DevelopmentRaspberry Pi

Visual Studio Code remote debugging of a .Net Core application running on Raspberry Pi and Ubuntu Linux

In this blog post I will show how to remotely debug simple .NET Core console application running on Raspberry Pi and Ubuntu Linux.

The purpose of this blog post is not to debug complex application, but to show step by step procedure how to perform remote debugging of .NET Core application. In other words, I would like to stop remote application execution and checkout execution parameters and call stack.

To start with, my setup looks like this.

My playground specs

My Raspberry Pi specs

And of course, ssh access to this machine.

My Windows 10 development machine specs

My simple .NET Core Console app

To demonstrate remote debugging I will create simple .NET Core Console application.

new .net core console app

Then, I use my Visual Studio Code and open folder with generated .NET Core Console project.

As you can see, it’s really basic. Let’s add some magic to it.

I will add some code to the application: when console is started, system info is displayed and then inside infinite loop some processing is done, namely: current time is displayed, two random numbers are summed and displayed and finally to slow down everything – sleep the app for 5 secs. Simple, agree?

Further, lets check if everything compiles and if debugging works on my local development Windows machine. I start the app with debugger option on (by hitting F5 key or via menu Run->Start Debugging).

Upper picture clearly shows running app (in debug mode) with breakpoint, local debug variables and application execution output. Local debugging is working as expected.

So, what about remote debugging.

Start remote debugging

First, I need to compile my source code for target architecture (Linux arm64), deploy it to remote system and connect my local development environment to remote debugger.

I compile and publish my simple .NET Core app for my Raspberry Pi with following command:

dotnet publish -r linux-arm64 –self-contained false

One additional note here: I compiled my app with runtime dependent option, meaning that on my target machine I need to have shared runtime enabled and installed. Of course, self-contained build is also possible. You can read my blog post debating .NET Core 3.0 publish options here: https://www.jenx.si/2020/02/05/deployment-options-in-net-core-3-0.

OK, now I have binaries for my PI ready. I will deploy it via ssh to my remote Raspberry Pi. For that purpose I will use scp tool from OpenSsh toolset. I will copy my binaries to my remote Raspberry PI via ssh with following command:

Then, I switch to my Raspberry Pi, update file permissions and try my app if it works.

Voila, my app running on my remote Raspberry device as expected.

In the next section, I will show how to enable my Visual Studio Code for remote debugging.

Enable Visual Studio Code for remote debugging.

Currently, I have my code on my local Windows development machine and deployed and running binaries on my remote Pi device. I need to tune up Visual Studio Code to able to attach to my Raspberry Pi and stop application execution at my breakpoint.

Visual Studio generates launch.json inside .vscode folder where I can tune up Launch Targets with debugger settings.

On short, for my presented example my settings for remote debugging is under section named “ .NET Core Debug on my Pi4 (remote) “. All settings are more or less self-explanatory.

When I start app with this debug target – as shown below:

I get this:

Finally, I can debug my .NET Core C# code on my remote Raspberry PI running Ubuntu Linux.

Conclusion

In this blog post I presented step-by-step procedure how to debug .NET Core application running on remote Raspberry Pi running Ubuntu Linux.

The idea was to show how to debug app as simple as possible. Of course, there is a lot of room to improve this procedure. Just to mention few of them: automatic deploy binaries to remote computer at compile time, automate ssh connection by using private/public key (removing passwords in configs), uniforming ssh tools (putty or OpenSsh client tools), etc.

Till next time, happy coding.

5 thoughts on “Visual Studio Code remote debugging of a .Net Core application running on Raspberry Pi and Ubuntu Linux

  1. Hello joze,
    i just started with coding on rasbperry pi 4 with .Net5.0 and run in following problem.
    1, I can debug a just simple console app (hello world) only with .Net3.1.
    Using .Net5.0 is not working to attach. Seems there is a bug in Omnisharp at the moment.
    2.I can not debug a console app (.Net3.1) if im using System.Device.Gpio.
    I get the message that dll is missing:
    An assembly specified in the application dependencies manifest (ButtonLED.deps.json) was not found:
    package: ‘System.Drawing.Common’, version: ‘5.0.0’
    path: ‘runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll’

    Did you run also in that scenario? And if that the case do you know a solution?

  2. Hi,

    How did you handle the problem with forward-slashes ? I’ve message just after started debugging “Unable to read file ‘\home\ubuntu\repos\server\SocketsConfiguration.cs’ (Error: Unable to resolve non-existing file ‘\home\ubuntu\repos\server\SocketsConfiguration.cs’). The problem is that there is file /home/ubuntu/repos/server/SocketsConfiguration.cs’ but back-slashes are probably taken from local DLL file.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.