16

I am new to the Raspberry Pi platform and I have been collecting resources and trying to determine what the little computer is (not) suited for.

I understand that Python is the go-to programming environment for control & automation of R-Pi accessories, and controllers; I cannot wait to try that out. However, I am also trying to determine how to use the Pi for some web app development (testing).

I am sure that you have heard of Microsoft making its .Net Core framework available as open source, as well as its (really great) code editor, Visual Studio Code. As of now the binary files have only been released for Linux ia32/x64 architectures (among others).

Has anyone of you seen any progress on the ARM branch? Perhaps, you have seen some workarounds, or unofficial releases worth checking out?

vvvvv
  • 269
  • 1
  • 2
  • 11

4 Answers4

15

The community is in the progress of making dotnet core working on ARM. Samsung recently joined the dotnet foundation to (mostly) do work for ARM.

.NET is a great technology that dramatically boosts developer productivity. Samsung has been contributing to .NET Core on GitHub – especially in the area of ARM support – and we are looking forward to contributing further to the .NET open source community. Samsung is glad to join the .NET Foundation's Technical Steering Group and help more developers enjoy the benefits of .NET.

-- Hong-Seok Kim, Vice President, Samsung Electronics

The community is tracking the progress with the regression tests on a github issue: https://github.com/dotnet/coreclr/issues/3977

To view all open issues search the dotnet/coreclr github for the ARM tag: https://github.com/dotnet/coreclr/labels/ARM

SynerCoder
  • 251
  • 2
  • 5
4

The .NET class of languages are all currently supported on the Raspberry Pi 2 if you use Windows 10 IOT as your operating system.

The IOT version of the OS is a little different from standard Windows. It's designed to be a headless device. As such, it will not have a display or a traditional desktop.

If you want to use .NET on Raspbian, you can try a software package called Mono. It's not official, but is very popular for C# developers on Linux.

Jacobm001
  • 11,898
  • 7
  • 46
  • 56
  • 3
  • Microsoft Windows 10 "IoT Core" is not headless , but you can only run one (1) app in fullscreen at a time 2. Xamarin/Mono is currently integrating Microsoft code , i don't know if and how that is visible in Raspbian
  • – flakeshake Jan 28 '16 at 07:26
  • @flakeshake: My understanding is that it's headless out of the box, and you have to add in the ability to display an app through a module. Is that correct? – Jacobm001 Jan 28 '16 at 18:22
  • No , on first boot the screen will already display info (IP Address etc.) . UWP apps are implictly headful. – flakeshake Jan 29 '16 at 12:08
  • Thanks for the responses so far, great! Yeah, I am familiar with the Windows IOT platform; that being said, I was thinking more about keeping the Linux OS as the base and use it as a regular computer. I'll keep your suggestions in mind, for sure. – Michal M. Maslowski Jan 29 '16 at 16:02
  • Is there any progress with this? .NET Core is going to be released in a few days officialy.

    There should be a way to run .NET Core applications in Raspbian, for instance.

    – SuperJMN Jun 22 '16 at 20:26