up vote 2 down vote favorite
share [g+] share [fb]

Am I able to embed the .net runtime so that .net is not required on the host operating system? I was looking at doing this with Mono by looking here: http://mono-project.com/Embedding_Mono but seems to allude to using external modules to accomplish this. My goal is to have one single executable with no installed .net runtime. I do not know how this would be configured in my application to compile the native code, link the mono runtime- as well as compile the C# code and link that as well?

link|improve this question

75% accept rate
feedback

4 Answers

up vote 0 down vote accepted

This is not currently supported, and AFAIK there are no plans to change that status.

There are some third party tools out there that try to do this for you, but last time I checked none were very good yet.

link|improve this answer
feedback

You can now statically compile Mono assemblies as was just demonstrated at PDC. The purpose of doing this was to allow .Net applications to run on the iPhone, but this should work anywhere.

There are some limitations to this; obviously, it can't depend on runtime-generated code, so Reflection.Emit is out.

link|improve this answer
very cool. plus one – Joel Coehoorn Nov 6 '08 at 22:23
Any more details on this such as a real example or other information? – Klathzazt Nov 10 '08 at 23:27
This is a brand-new feature to 2.0.1, and doesn't yet support the 2.0 profile. There are no real examples yet that I am aware of, it's really more of a proof-of-concept than anything. – Adam Lassek Nov 11 '08 at 14:40
feedback

Third-party solution i've used with much success: Xenocode

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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