How can i be able to run a visual studio 2008 application on linux plateform. is there plugin that can convert my project exe to linux run able file?
views:
38answers:
2
+1
A:
if you use dot net there is a MONO library that enables running some dot net application on linux. but it not fully compatible. Otherwise you can do it, (maybe using silverlite you would...)
Dani
2009-12-17 07:18:23
@Dani I am using mono library .. You are right its not fully compatible
Pandiya Chendur
2009-12-17 07:20:24
+1
A:
As far as I know, there is no software that allows Visual Studio to generate non-Windows executables.
If it's a native executable (not .NET) you can try running it under WINE and see if that works. If it doesn't I'd guess the options are either to make it work with WINE or see if you can build it as a native Linux application. The latter will be rather painful if it's a GUI application, obviously, and I'd question if it is worth it. Porting a command line app might be doable but don't underestimate the work involved.
Timo Geusch
2009-12-17 07:26:12