Tagged Questions

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

learn more… | top users | synonyms

26
votes
8answers
5k views

ILMerge Best Practices

Do you use ILMerge? Do you use ILMerge to merge multiple assemblies to ease deployment of dll's? Have you found problems with deployment/versioning in production after ILMerging assemblies together? ...
21
votes
3answers
8k views

using ILMerge with .NET 4 libraries

Two problems: 1) Basic .NET Assembly Not Included in ILMerged Assembly I'm having trouble using ILMerge in my post-build after upgrading from .NET 3.5/Visual Studio 2008 to .NET 4/Visual Studio ...
12
votes
2answers
1k views

Is there a way to merge pdb files with ilmerge?

For various reasons we use ilmerge to put all of our application assemblies into one file so the user needs to handle just one file. Unfortunately it seems that there is no way to merge the .pdb files ...
12
votes
6answers
4k views

Merging dlls into a single .exe with wpf

I'm currently working on a project where we have a lot of dependencies. I would like to compile all the referenced dll's into the .exe much like you would do with embedded resources. I have tried ...
10
votes
1answer
2k views

ILMerge DLL not merged in correctly

In the build process for a .NET C# tool, I have been using ILMerge to merge the assemblies into a single exe. I added a new class library recently, and now the ILMerge is failing. I have remembered ...
9
votes
3answers
4k views

How to Integrate ILMerge into Visual Studio Build Process to Merge Assemblies?

I want to merge one .NET DLL assembly and one C# Class Library project referenced by a VB.NET Console Application project into one command-line console executable. I can do this with ILMerge from the ...
6
votes
2answers
120 views

How to: Merge multiple assemblies into one

I consuming my servicestack using EXE project (startup task for azure application) in that i have copied following servicestack's dll & some Azure's dlls in to EXE project. When i build this ...
6
votes
4answers
2k views

Best practices for merging assemblies?

I am wondering what are the heuristics when creating releases of libraries to be included in other projects in relation to dependencies and if I should include them or not. My problem is the ...
5
votes
3answers
266 views

Is there a ILMerge equivalent tool for Mono?

I'm looking for a open source tool to merge multiple .NET assemblies into a single assembly.
5
votes
1answer
183 views

Performance of .NET ILMerged assemblies

I have two .NET libraries: "Foo.Bar" and "Foo.Baz". "Foo.Bar" is self-contained, while "Foo.Baz" references "Foo.Bar". Assuming I do the following: Use ILMerge to merge "Foo.Bar.dll" with ...
5
votes
2answers
443 views

Are there size limitations to the .NET Assembly format?

We ran into an interesting issue that I've not experienced before. We have a large scale production ASP.NET 3.5 SP1 Web App Project in Visual Studio 2008 SP1 which gets compiled and deployed using a ...
4
votes
1answer
172 views

CRM 2011, ILMerge and localization

I'm having some trouble merging the localization satellite assemblies into the plugin DLL for CRM2011. Either that, or I don't know how to use the merged resources afterwards. I create a few plugins ...
4
votes
1answer
58 views

Dynamic loading working fine, except after the executable is ILMerged

This is strange. I have a windows application that dynamically loads DLLs using Reflection.Assembly.LoadFrom(dll_file_name_here). It works as expected, until I ILMerge the application with another ...
4
votes
3answers
99 views

Merging assemblies and using internal keyword

Does merging assemblies change the scope of the internal keyword? I'm fairly certain that it wouldn't have an effect (or at least one that would matter) since anyone referencing the final assembly ...
4
votes
1answer
167 views

Why is this ilmerge command not working?

Ive got this ilMerge command: "C:\Repositories\trunk\utilities\ILMerge\ILMerge.exe" /targetplatform:v4,C:\Windows\Microsoft.NET\Framework\v4.0.30319 /closed /target:winexe /ndebug ...
4
votes
5answers
2k views

Serious trouble with ILMerge and .NET 4.0

For the life of me, I can't seem to get my .NET 4 application merging properly with ILMerge. Even after setting /targetplatform, /lib, /ndebug and adding a custom ILMerge.exe.config file the output ...
4
votes
2answers
273 views

Referencing assemblies created with ILMerge in Visual Studio projects

I have a solution in Visual Studio with 5 projects. They are: Foo.Core: Core functionality Foo.Api: Generated code built on top of core Foo.Web: Web-specific extensions Foo.Web.Mvc: MVC-specific ...
4
votes
3answers
575 views

.NET type definitions in merged assemblies (ILMerge)

I am merging several .NET assemblies using ILMerge including some 3rd party assemblies. Since doing so, I've experienced several errors that all boil down to the fact that type definitions are tied ...
4
votes
3answers
893 views

ILMerge and localized resource assemblies

We have an application whose structure when compiled looks something like this: Foo nb-NO Text.resources.dll sv-SE Text.resources.dll Bar.dll Foo.exe Text.dll Is it possible to use ILMerge ...
4
votes
2answers
1k views

ILMerge and 3rd party assemblies

I have a project with quite a few dependencies and would like to cut down on the number of assemblies being distributed. My project depends on external 3rd party dependencies such as Oracle.DataAccess ...
3
votes
2answers
218 views

Merging DLL's and changing manging namespaces

I want to create a single dll that is merged with a 3rd party dll. This means end consumers will only have to deal with 1 dll instead of 2. For augments sake lets say that the 3rd party dll is nLog. ...
3
votes
4answers
846 views

C# BinaryFormatter.Deserialize “unable to find assembly” after ILMerge

So I have a C# solution with a referenced dll (also C# with the same .Net version). When I build the solution and run the resulting exe, without merging the exe and the referenced dll, everything ...
3
votes
4answers
81 views

Best practice for reducing bloat with a helper/utility library for multiple projects

Ok, I have an application that I have developed, let's call it Project A. Functions not found in the Microsoft .NET Framework I put into a shared library, let's call this MyLib. Now Project B, C, D, ...
3
votes
3answers
207 views

Fixing conflicting types in C# .NET caused by ILMerge

I have an interesting problem which I would like an easy fix for. I have a "library" assembly that is referenced in both a "client" project and a "test" project in a solution in Visual Studio. The ...
3
votes
1answer
346 views

How to merge assemblies of a WPF application?

I tried to use ILMerge on my WPF-based project (VS2010, Net4.0) but I couldn't make the merged executable to run. So I created two very simply projects just a console application which prints out ...
3
votes
3answers
219 views

Is there a free program that merges assemblies (like ILMerge), but works with wpf?

I have not had any luck merging wpf assemblies using ILMerge.
3
votes
1answer
203 views

Drawbacks, advantages, etc. between ILMerge or ResolveAssembly for embedding assemblies?

Currently I know of two methods of embedding assemblies into one application file: ILMerge and using the ResolveAssembly event. I would like to know if anyone have had more success with one over the ...
3
votes
4answers
445 views

How do I debug into an ILMerged assembly?

Summary I want to alter the build process of a 2-assembly solution, such that a call to ILMerge is invoked, and the build results in a single assembly. Further I would like to be able to debug into ...
3
votes
2answers
78 views

How can I tell that ILMerge has been used

I'd like to be able to tell whether or not an assembly is the output/result from using ILMerge on two different assemblies. It doesn't matter how nitty gritty it is, if I have to parse IL, I'm willing ...
3
votes
2answers
461 views

Using ILMerge, is it possible to merge XML documentation files with the DLL?

I know I can merge PDB with a DLL file but I'm trying to do the same with an XML documentation file. It should be possible since you don't have .xml files with .net assemblies and yet you have ...
3
votes
1answer
2k views

When & How to use ILMerge with Visual Studio Project / Solution

I'm developing a medium sized enterprise application. There are many projects / solutions to this. For example: Company.Data Company.Data.LinqToSql Company.Entities (business objects) Company.BLL ...
3
votes
4answers
414 views

How can I maintain two separate projects but merge them into one DLL?

I'm hoping that there is just something simple that I am missing here. I am trying to maintain two separate projects ProjectName.Core & ProjectName.Infrastructure This is made in a typical ...
3
votes
2answers
733 views

How do you sign an assembly that was generated by an ILMerge operation?

I managed to use ILMerge to merge all the assemblies I have in my project into a single assembly, but the problem is there doesn't seem to be a way to sign the merged assembly. Is there some sort of ...
3
votes
2answers
4k views

How to use IlMerge in a Setup Project?

I have use IlMerge to merge all the dlls of my projects in one exe. I use a targets file which is referenced in the "import" of the main csproj. The ExecCommand in the targets is: <Exec ...
3
votes
6answers
1k views

C# Compiler Incorrectly Optimizes Code

I have a ASP.NET application running on a remote web server and I just started getting this error: Method not found: 'Void System.Collections.Generic.ICollection`1..ctor()'. I disassembled the code ...
3
votes
1answer
1k views

ILMerge and Web Resources

We're attemtping to merge our DLL's into one for deployment, thus ILMerge. Almost everything seems to work great. We have a couple web controls that use ClientScript.RegisterClientScriptResource and ...
2
votes
1answer
34 views

Using ILMerge with IronPython

I have trouble merging IronPython.dll, IronPython.Modules.dll, Microsoft.Dynamic.dll, Microsoft.Scripting.dll and Microsoft.Scripting.Metadata.dll into my application. The first error i got while ...
2
votes
3answers
79 views

ILMerge generated assembly doesn't run, although log output reports no errors - why is this?

I'm testing out ILMerge for a new project, and although the .exe file seems to be created correctly, it won't run. I have installed ILMerge via the .msi installer (found here ...
2
votes
2answers
107 views

ILMerge exception when trying to merge pdb file

I'm trying to merge two assemblies into a single assembly, which works quiet fine. Yet, when I try to merge the *.pdb files too, I get an error: Access to the path ...
2
votes
1answer
256 views

Avoiding BadImageFormatException when there is unmanaged code

I have a web service that throws a BadImageFormatException any time I try to run the service from Visual Studio. This answer to another question suggested running peverify against DLLs to see if ...
2
votes
1answer
186 views

ILMerge: Rename internalized assemblies' namespaces?

For example, let's say I want to use Bouncy Castle in my DLL. Since I want to ease deployment, I use ILMerge to combine MyDll.dll and BouncyCastle.Crypto.dll to produce MyDllMerged.dll. I use the ...
2
votes
2answers
209 views

How can I use ILMerge with Windows Phone 7 assemblies?

I've got this working for SL4, but I need an equivalent for my WP7 project: "c:\Program Files (x86)\Microsoft\ILMerge\ilmerge.exe" /lib:MyProj.Silverlight\bin\Release /internalize /ndebug ...
2
votes
1answer
105 views

Is there a utility that does the opposite of ilmerge?

I would like to strip code from an assembly using a command-line or GUI. There are times when assemblies contain types that are in other assemblies and this requires you to add extern alias to your ...
2
votes
1answer
747 views

ILMerge + localized resource assemblies

I'm using ILMerge to create a single assembly application out of a project that contains 1 exe and 2 resource dll's: \bin\Debug\test.exe \bin\Debug\nl-BE\test.resources.dll ...
2
votes
1answer
180 views

Does ILMerge actually merge assemblies, or just put everything in one file?

What does ILMerge do? Does it create a single new assembly, or just put multiple assemblies in to one dll? I'm asking from the perspective of: What happens when I'm merging assemblies that have ...
2
votes
1answer
921 views

Build With ILMerge Error

Has anyone had this error with IlMerge? I am trying to merge a few assemblies for a .NET project using the 4.0 Framework. ILMerge /log /lib:..\Libraries /targetplatform:v4 ...
2
votes
2answers
2k views

Runtime Version of ILMerge'd assembly is v4.0.20926; expected version is v4.0.30319

This is what my .csproj AfterBuild looks like: <Target Name="AfterBuild" Condition=" '$(Configuration)' == 'Release'"> <Exec Command="&quot;..\Tools\ILMerge\ILMerge.exe&quot; ...
2
votes
1answer
225 views

How can I set the path environnment variable in Visual Studio?

I'm using ILMerge in my post build step. For interoperability reason I would like use ILMerge relative path. How can I set the path environment variable accessible from my post build step?
2
votes
1answer
581 views

Allow duplicate generic types in ILMerge

according to the ILMerge documentation it allows to merge assemblies with conflicting types. I'm trying to merge FSharp.Core.dll and System.Reactive.dll but I can't figure out the command line params ...
2
votes
2answers
1k views

Pre-generating XmlSerializers using Sgen and ILMerge. Trouble with arrays

I use XmlSerializer extensively and rather than allowing .NET to generate the necessary serialization assemblies at runtime, I'd like to generate these assemblies ahead of time and bundle them with my ...

1 2 3