I would like to distribute my .NET programs without the .NET framework. Is it possible to compile a .NET program to machine code?
|
1
|
|
|
|
|
|
Yes, you can precompile using Ngen.exe, however this does not remove the CLR dependence. You must still ship the IL assemblies as well, the only benefit of Ngen is that your application can start without invoking the JIT, so you get a real fast startup time. According to CLR Via C#:
EDIT: There is some debate on the above info from CLR Via C#, as some say that you are required to run Ngen on the target machine only as part of the install process. |
||||||||||||||
|
|
|
Look at MONO project: mono command with --aot option. http://www.mono-project.com/AOT |
|||
|
|
|
|
There is IL2CPU for the compilation part. |
||||
|
|
|
Yes, but the .NET Framework does it for you at runtime (default) or at install time (ngen). Among other reasons, this IL -> machine code is done separately on each install machine so it can be optimized for that particular machine.
No, for all intents and purposes you cannot do this. The 3rd party workarounds may work in some scenarios, but by then I wouldn't really consider it "managed code" or ".NET" anymore. |
||
|
|
|
|
If you just concerned with the size of deploying the Framework, you might read up on this. |
||
|
|
|
|
I'd always thought it would be cool to compile c# to machine code directly without the CLR dependency though.... |
||
|
|
|
|
Another (expensive and proprietary, licenses start at $1599) product that can do this is Xenocode Postbuild. Haven't used it myself though, with it costing about the gross national product of a small African country and all... |
||
|
|
|
|
There are some third party tools that do this, e.g. |
|||
|
|
|
|
I think you should not: That's the task of the JIT compiler. However, you could use ClickOnce or Windows Installer to deploy it so that the missing framework isn't such a big problem: you could tell the installer to download the Framework and install it. |
|||
|
|
|
|
Remotesoft has one: Salamander .NET Linker I don't have any experience with it though. |
||
|
|
|
Quite simply, no. |
||
|
|
|
|
I don't think that it is possible. You can make a prejitted assembly but you still need the framework. |
||
|
|
