vote up 1 vote down star

What tools do you know to compile .NET projects to native binaries that run without .NET Framework, so far I've found :

Xenocode Postbuild for .NET, which costs $1599.

Salamander .NET Linker, which costs $1249.

Mono Ahead-of-Time compilation (AOT), free. Thanks to JaredPar and Reed Copsey

Native Image Generator (Ngen.exe), free, doesn't do what I'm talking about, it does pre-JIT compiling, the resulting executable-file DOES need .NET framework to work.

Do you know any other products to add to the list?

flag

Only Windows binaries, or binaries for other languages as well? – Cat Megex Aug 6 at 17:42
I have Windows in mind, but other platforms are welcome! – Moayad Mardini Aug 6 at 19:20

3 Answers

vote up 3 vote down check

It's limited, but Mono AOT ($0) does this, as well.

link|flag
Thanks for mentioning Mono AOT. – Moayad Mardini Aug 6 at 17:41
vote up 2 vote down

Remember that whatever you do:

  • Will not run to the full potential of the .NET Framework's ability (some optimizations are never available when precompiled)
  • You will not get fixes if security patches are released
  • Your distributable will be larger (possibly, but not guaranteed to be smaller than shipping the .NET runtime client profile)
  • You will not have access to certain .NET features
link|flag
this doesn't answer the question. please stay on topic. – Geo Aug 6 at 17:47
I tried Xenocode Postbuild just now (been meaning to anyway), on a 200kB application that uses a fraction of the .NET framework. 35MB executable! :( – Thorarin Aug 6 at 18:05
@Geo: Of course it stays on topic. I said whatever answer is given, he needs to evaluate its limitations before going "yes, that's what I'm after." No solution given in this thread would be capable of offering exactly what he requests. Someone needs to point that out, and since you wouldn't, I did. – 280Z28 Aug 6 at 18:16
vote up 1 vote down

Add the Mono project to your list. They support compilation to native binaries.

link|flag
Added it to the list, thanks! – Moayad Mardini Aug 6 at 17:40

Your Answer

Get an OpenID
or

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