Reputation: 10469
Is it possible to debug ASP.NET Core 3.0 application with Visual Studio 2019 on Raspberry PI 3?
I manage to install ASP.NET Core 3.0 and create Hello World application on Raspberry PI with dotnet new webapp
.
Then I build ASP.NET Core 3.0 on Visual studio 2019 and deploy it to local folder, copy entire content to raspberry pi and run it. It works.
But I don't know how can I debug app from Visual Studio 2019. There is no remote debugging property, I can not select any arm CPU type nothing.
I can't even find any blog, post how to do it.
Upvotes: 4
Views: 1396
Reputation: 1065
You can debug over SSH in Visual Studio.
So what you want to do is effectively this:
I wrote an article about this exact topic with pictures and a powershell script here: https://medium.com/@lewwybogus/debugging-your-net-core-3-app-on-your-raspberry-pi-with-visual-studio-2019-9662348e79d9?source=friends_link&sk=33e0da85e07e45234a7804d5801110a1
Upvotes: 2