Native Code

You can't, directly. You can't make an entirely win32 executable file with .NET. There is a tool, ngen, which can compile all the IL in to win32 code and cache it, but it won't be stored in the application itself. This step is usually performed as a post-install task, and is usually unnecessary.
 
Back
Top