Click here to Skip to main content
6,822,123 members and growing! (15,947 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » .NET Framework » How To     Intermediate

Merging .NET assemblies using ILMerge

By Rüdiger Klaehn

Shows how to merge multiple .NET assemblies to a single one using ILMerge.
Windows, .NET, Visual-Studio, Dev
Posted:21 Jan 2005
Views:112,203
Bookmarked:63 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
40 votes for this article.
Popularity: 6.93 Rating: 4.32 out of 5
4 votes, 10.0%
1

2
1 vote, 2.5%
3
6 votes, 15.0%
4
29 votes, 72.5%
5

Introduction

As you know, traditional linking of object code is no longer necessary in .NET. A .NET program will usually consist of multiple parts. A typical .NET application consists of an executable assembly, a few assemblies in the program directory, and a few assemblies in the global assembly cache. When the program is run, the runtime combines all these parts to a program. Linking at compile time is no longer necessary.

But sometimes, it is nevertheless useful to combine all parts a program needs to execute into a single assembly. For example, you might want to simplify the deployment of your application by combining the program, all required libraries, and all resources, into a single .exe file.

A single project

If all parts of your program are written by yourself in the same language, you can obviously just add all source files to a single project. The result will be a single DLL or EXE containing all dependencies.

csc /target:winexe /out:Program.exe 
      MainProgram.cs ClassLibrary1.cs ClassLibrary2.cs

However, if your program is written in multiple languages or if you are using binary third party libraries, you are out of luck.

.NET Modules

The .NET compilers already contain options for exactly this. If you compile a project, there is an option to create a module, which is similar to an assembly but without a manifest file. You can then use the al.exe tool to combine some of these modules to a single assembly. This feature makes it possible to create a single assembly that contains multiple languages.

First, you would compile the program and the class libraries to netmodules using the module target. Then you can use the assembly linker al.exe to combine these modules to a single assembly.

csc /target:module /out:ClassLibrary1.netmodule ClassLibrary1.cs
vbc /target:module /out:ClassLibrary2.netmodule ClassLibrary2.vb
vbc /target:module /out:Program.netmodule Program.vb
al /target:winexe /out:Program.exe ClassLibrary1.netmodule 
                 ClassLibrary2.netmodule Program.netmodule

But unfortunately, this method only works if you have all the required parts of your program either as source code or as .NET modules. If you are useing a third party class library in assembly form, you are again out of luck.

ILMerge

Since a .NET module is basically just an assembly without an assembly manifest, it should be possible to convert an assembly to a .NET module, at least that is what I thought. When researching this on Google, I found a tremendously useful tool on Microsoft research called ILMerge. This little gem makes it possible to link multiple assemblies to a single one.

First, you would compile your libraries to DLLs and your program to an EXE referencing the DLLs. This is exactly what Visual Studio would do if you had multiple libraries and a program referencing these libraries, so there is no need to do this on the command line.

csc /target:library /out:ClassLibrary1.dll ClassLibrary1.cs
vbc /target:library /out:ClassLibrary2.dll ClassLibrary2.vb
vbc /target:winexe /out:Program.exe 
    /reference:ClassLibrary1.dll,ClassLibrary2.dll Program.vb

This will produce a normal .exe that requires the two DLLs in the program directory or in the global assembly cache to run.

Now you can link these parts to a single self-contained EXE, using ILMerge:

ilmerge /target:winexe /out:SelfContainedProgram.exe 
        Program.exe ClassLibrary1.dll ClassLibrary2.dll

The nice thing about this is that you can also merge third party assemblies like commercial class libraries into your program. And you do not have to modify your build process. All you have to do is to merge the assemblies to a single EXE before deploying.

Conclusion

I found ILMerge tremendously useful, and I think that something like this should be a part of the .NET framework SDK. Maybe just enhance al.exe so that it can also link DLLs.

I have only scratched the surface of the .NET build process and the capabilities of ILMerge, and this article might contain many inaccuracies or even errors. But I found ilmerge.exe so useful that I just had to write about it.

Resources

  • ILMerge: The ILMerge utility from Michael Barnett of Microsoft Research.
  • ILMerge Task: A NAnt task for ILMerge.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Rüdiger Klaehn


Member
Rüdiger Klaehn works as freelance developer in the space industry. He is very interested in functional programming languages and hopes that .NET will lead to a more widespread adoption in the industry.
Occupation: Web Developer
Location: Germany Germany

Other popular .NET Framework articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 38 (Total in Forum: 38) (Refresh)FirstPrevNext
GeneralFailed to run PinmemberTammam Koujan5:51 19 Jan '10  
GeneralILMerge GUI PinmemberLee.2:26 17 Oct '09  
GeneralMerged DLL com registration PinmemberWilliam F6:17 8 Jun '09  
GeneralHow do you merge all the assemblies in the bin folder using ILMerge using command line Pinmemberazamsharp6:07 24 Jul '08  
GeneralWindows Mobile 6.0 Compatibility PinmemberMandeep Singh Sidhu2:31 23 Apr '08  
GeneralCOM PinmemberGAbirkan9:33 22 Dec '07  
GeneralProblem after merging Pinmemberpadhalni1:56 19 Feb '07  
QuestionRe: Problem after merging Pinmembera85848:56 10 Apr '07  
AnswerRe: Problem after merging Pinmembera85849:04 10 Apr '07  
Questionmerging a bunch of DLLs of an ASP.NET project Pinmemberweareborg7:32 2 Dec '06  
GeneralLocalisation DLLs PinmemberDouba1:49 29 Jun '06  
GeneralGUI for ILMerge - Gilma PinmemberTomer Shalev11:27 2 Dec '05  
GeneralThere is a product out there with UI for ILMerger PinmemberSamar Aarkotti11:21 14 Oct '05  
GeneralRe: There is a product out there with UI for ILMerger PinmemberFrank Hileman7:58 29 Nov '05  
Generalsimple question. PinmemberSamar Aarkotti4:43 13 Oct '05  
General3rd party control licenses after merge PinmemberDrew Noakes5:29 6 Sep '05  
GeneralRe: 3rd party control licenses after merge Pinmemberweiser_98@hotmail.com23:14 6 Feb '06  
GeneralRe: 3rd party control licenses after merge PinmemberBertrand Jobert11:13 5 Nov '07  
GeneralDotfuscator and ILMerge Pinmembermceranski8:09 29 Aug '05  
GeneralRe: Dotfuscator and ILMerge [modified] Pinmemberqjhsert23:27 14 Oct '06  
Generalno output PinmemberNewYoda23:21 12 Aug '05  
GeneralRe: no output PinmemberDrew Noakes5:35 6 Sep '05  
GeneralHow to use this Pinmemberallenmpcx21:46 12 Aug '05  
GeneralRe: How to use this PinmemberDrew Noakes5:38 6 Sep '05  
GeneralVB.NET and Setup Projects PinmemberAndrewChapman14:49 9 Aug '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.

PermaLink | Privacy | Terms of Use
Last Updated: 21 Jan 2005
Editor: Smitha Vijayan
Copyright 2005 by Rüdiger Klaehn
Everything else Copyright © CodeProject, 1999-2010
Web10 | Advertise on the Code Project