|
I think he had a bad link. I did a quick google for "dotnet raspberry pi" and ran across https://github.com/dotnet/core/b ... ryPiInstructions.md which has the instructions. The project might of recently redid it's layout.
It looks like you have to install dotnet on a windows machine and build your project. Then you dotnet publish -r linux-arm for Linux running on Raspberry Pi. This creates the project that you copy to the Pi to run. In the case of the documentation it looks like the app is written in C#. Why not just get gcc and compile it naitvely? I guess there are probably some services available under dotnet that you have to work a lot hard to do in gcc. |
|