Reputation: 3709
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
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