Reputation: 7341
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?
Upvotes: 4
Views: 2674
Reputation: 737
While this is an question, it's an ongoing concern of a lot of people. In fact, MS seems to be doing something about it. It looks like we'll soon be able to generate native, statically linked apps using .NET languages and libraries.
http://blogs.msdn.com/b/dotnet/archive/2014/04/02/announcing-net-native-preview.aspx
Upvotes: 0
Reputation: 99859
Remember that whatever you do:
Upvotes: 1
Reputation: 754515
Add the Mono project to your list. They support compilation to native binaries.
Upvotes: 1