c# – Way to build, move, start Project and attach Debugger from Windows Machine on Linux Raspberry Pi
I have a Asp.Net Core Project on my Windows PC. The goal is to run and debug this app on my Raspberry Pi via remote access. The Pi has a Linux OS, if possible i don’t want to use Windows iot. My pc and the Pi are connected via SSH.
What i did so far:
- Publish the project locally
- Move the files to the Raspberry Pi
- Start the .dll
- Attach the Debugger
The Problem is that i have to fill and execute the swagger page on the pi and then i can debug on my windows pc. When i modify the code i would have to do all the steps above again. I am looking for a solution, where i can do all 4 steps automaticlly. The perfect solution would be to just press run in visual studio on my windows pc.
Can anyone give me any tips on how to solve this or what to research?
Read more here: Source link