running .net on raspberry pi

Post on 29-Jun-2015

3.354 Views

Category:

Technology

1 Downloads

Preview:

Click to see full reader

DESCRIPTION

Quick overview of how you run .Net code on a Raspberry Pi.

TRANSCRIPT

.Net on Raspberry Pi

Paul Fryer | Feb 2014

Get a Raspberry Pi

http://www.raspberrypi.org/downloads

Get an SD card. Download an OS.

Run Wheezey OS

sudo apt-get install mono

sudo mozroots

This installs mono.

Mono trusts NO certificates by default. If we are going to use SSL we need to import some. Use the above command to import all the certificates Mozilla trusts.

mono HelloWorld.exeThis is how we run .net executables on Mono.

Linux Foo

sudo apt-get install xrdpOptional step, install a remote desktop server so you can connect to your Pi via the network.

Use Xamarin Studio or Visual Studio

https://xamarin.com/studio

Xamarin Studio is a free IDE for developing .Net code for Mono.

It’s compatible with Visual Studio solutions (.sln)

Compile .Net code and deploy to Raspberry Pi.

top related