tags:

views:

280

answers:

1

Using Mono on Linux, is there any way to create a standalone executable which will run on systems without mono installed?

+4  A: 

You should take a look at the mkbundles command. It can static link all the required libraries and the CLR along with your app into one exe.

Also check out this page on the different ways of running mono applications.

Simon P Stevens