-2

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 )?

Devolus
  • 21,661
  • 13
  • 66
  • 113
mojtaba
  • 339
  • 1
  • 4
  • 17

1 Answers1

1

There is this tool called NGen where you can compile your MSIL Assembly into native code.

notmii
  • 413
  • 4
  • 9
  • 1
    Actually 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