1

I want to write a simple web service in c# using Visual Studios, and deploy this service from a Raspberry Pi 3. I know mono is a tool that runs .NET code on Linux machines, but all of the examples I've seen are just running simple C# console applications.

Is it possible to run a whole c# web service? It will not be getting a lot (or any) traffic and is more of a just a personal project for fun, so I don't care about maximizing performance.

tlhIngan
3,3725 gold badges21 silver badges33 bronze badges
asked Nov 16, 2017 at 21:18

1 Answer 1

0

I've been using mono to run entire web applications developed on visual studio on a Linux nginx web server running on an AWS instance (therefore, running on x86_64).

Basically, you can run anything if you follow the guidelines described on mono-project (there is a list of what is not supported). What do you need are the packages compiled for ARM7HL and you're probably fine.

You can find all you need about it here: http://www.mono-project.com/docs/web/aspnet/

answered Nov 17, 2017 at 5:56

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.