Which programming languages that can generate self contained windows .exes?

后端 未结 12 2496
既然无缘
既然无缘 2021-02-19 02:09

I want to make an easy to deploy Windows application and was was wondering which programming systems can create totally self contained Windows .exe files?

As a plus, if

12条回答
  •  说谎
    说谎 (楼主)
    2021-02-19 02:28

    You can do this for Windows with .NET languages using ILMerge

    ILMerge is a utility for merging multiple .NET assemblies into a single .NET assembly. It works on executables and DLLs alike and comes with several options for controlling the processing and format of the output. See the accompanying documentation for details.

    However:

    Currently, ILMerge works only on Windows-based platforms. It does not yet support Rotor or Mono.

提交回复
热议问题