Tofig Hasanov
Tofig Hasanov

Reputation: 3709

Using Visual Studio C# program in Linux

I have written a program using Microsoft Visual C# 2010 Express. I need to make sure, that client can run the program from a php page on his Linux server. The problem is, I have never used Linux or php. How should I modify my program, so that it can be run on Linux? I use a lot of libraries as well (like AForge). Thank you!

Upvotes: 2

Views: 1250

Answers (2)

Kangkan
Kangkan

Reputation: 15571

First, .NET does not run on Linux readily. Mono (http://www.mono-project.com/Main_Page) is an option for this. You need to deploy mono onto the Linux box and configure so that your .NET app can run on it.

Upvotes: 2

m0sa
m0sa

Reputation: 10940

You can run .Net applications on Linux with mono. Check your program with the no Mono Migration Analyzer - MoMA

Upvotes: 2

Related Questions