views:

859

answers:

2

I was wondering if it is possible to use Mono static compilation on Windows. If so, what should I do?

+2  A: 

Yes it is possible,

http://www.mono-project.com/AOT#Supported_Platforms

igorgue
+8  A: 

To statically compile your code, you use the tool `mkbundle'.

The mkbundle tool requires a cygwin setup (it needs the assembler, linker and compiler) to generate the static binary.

miguel.de.icaza
AND THIS WILL WORK WITHOUT .NET RUNTIME?? ***shock*** :O
Camilo Martin