im looking for a way to implement a addin that can convert a C# solution into a mono compiled exe, so i can use it on a linux and mac environment that have the mono framework installed.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

There is no difference in a .Net exe and a Mono exe. Just compile your solution like you normally would in Visual Studio, then run you exe with Mono instead of .Net.

link|improve this answer
what im looking to do, is compile with xbuild and return the output of errors (if any), and if no errors, then build and run through cmd. – caesay Jun 6 '10 at 22:31
because if i just compile with msbuild then any mono related errors wont be displayed – caesay Jun 9 '10 at 0:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.