Turning .NET executable into native executable

前端 未结 11 2143
既然无缘
既然无缘 2020-12-03 00:19

Is there any approach to convert an application developed in .NET into a native executable (sources are included)?

Installing the whole framework (up to .NET Framew

11条回答
  •  失恋的感觉
    2020-12-03 00:41

    NGen compiles the exes to native exes, so they do not need to be JIT compiled as they are run. They are still dependant on the framework though.

    There are a few commercial companies that do provide products for compiling .net assemblies into standalone exes. Xenocode and vmware's Thinapp. Neither are cheap though.

提交回复
热议问题