can i convert CIL assembly files (.net exe files) to native exe files or exist a tool that protect or avoid from easy decompiling to magar source ? ( Not just Dotfuscator Community Edition )?
Asked
Active
Viewed 384 times
-2
-
as for .net check if it suits http://www.mono-project.com/AOT – qwr May 12 '13 at 11:48
1 Answers
1
There is this tool called NGen where you can compile your MSIL Assembly into native code.

notmii
- 413
- 4
- 9
-
1Actually Ngen isn't the best choice for decompile protection - assemblies had to be ngen-ed on target machine and each time a dependecy updates (e.g. core framework lib) it is good practice to again ngen source assemblies to omit broken dependencies. See this [thread](http://stackoverflow.com/questions/140750/is-it-possible-to-compile-net-il-code-to-machine-code). – laika May 12 '13 at 11:47