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?