Tagged Questions

0
votes
0answers
22 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 …
0
votes
1answer
18 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 …
0
votes
1answer
15 views

In a VS Setup project, how can I exclude the dependencies of a project from the MSI?

I'm working in C#. I have a small VS Solution with 4 projects: a DLL an EXE that references the DLL a merge project, that does nothing more than ILMerge on the assemblies from the prior two …
2
votes
2answers
51 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 …
2
votes
1answer
48 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 …
0
votes
1answer
15 views

Add custom properties for references in Visual Studio 2005

I make use of this technique by Scott Hanselman for merging multiple assemblies as part of building my solution. It works well but it's a bit of a hassle having to hand-edit my .csproj/.vbproj files. …
0
votes
1answer
34 views

C# ILMerge Unable to cast object of type ‘ClassY’ to type ‘ClassX’.

Here's the situation: I am using ILMerge to merge an assembly & all it's references into 1 .dll file using this method (custom.dll). I have an application which dynamically loads this assembly …
0
votes
1answer
118 views

Is it possible to successfully merge transitive assembly references with ILMerge?

I'm trying to use ILMerge to internalize some transitively referenced assemblies into an assembly I'm referencing to eliminate conflicts with those transitive dependencies elsehwere in my project. In …
0
votes
1answer
110 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 …
0
votes
2answers
83 views

ILMERGE icon for final .exe

I have a couple of dlls and an .exe file (call it input.exe). These are currently merged into a single output.exe file using ILMERGE. The input.exe file has an icon with it. However the output.exe …
4
votes
1answer
131 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 …
5
votes
6answers
875 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? …
0
votes
0answers
32 views

Nant Task For IlMerge 2.9.210.0

Anyone know where I can get a Nant task for ILMerge 2.9.210? I have tried this http://code.google.com/p/ilmerge-tasks/ but it is built against ILMerge 2.0.7.28 of ILMerge. It says that the new project …
2
votes
3answers
158 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 …
1
vote
1answer
56 views

Is there a way in Visual Stuio’s compilation settings to combine other referenced DLLs into the built assembly?

I have an EXE that I want to distribute, but I don't want to ship all the associated DLLs with it (sort of). Currently I package them all together using .NET Reactor. I tried ILMerge a while back to …

1 2 next
15 30 50 per page