Linking statically in C#

前端 未结 3 521
伪装坚强ぢ
伪装坚强ぢ 2020-12-14 03:26

I\'m working on a module for a CMS. This module is distributed as a class library DLL.

I have several utility libraries I\'d like to use in this module. Is there any

3条回答
  •  伪装坚强ぢ
    2020-12-14 03:28

    You can merge your many DLLs with ILMERGE:

    http://research.microsoft.com/~mbarnett/ILMerge.aspx

    Haven't tried it myself. Hope it helps.


    Download here:
    http://www.microsoft.com/downloads/details.aspx?familyid=22914587-B4AD-4EAE-87CF-B14AE6A939B0&displaylang=en

    Brief Description (from download-page)
    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.

提交回复
热议问题