Daniel Schaffer
Daniel Schaffer

Reputation: 57832

Referencing assemblies created with ILMerge in Visual Studio projects

I have a solution in Visual Studio with 5 projects. They are:

I want to use ILMerge to merge Foo.Core, Foo.Api and Newtonsoft.Json into a single assembly, called Foo. That's the easy part.

The problem I'm running into is that Foo.Web and Foo.Web.Mvc both need to reference all three of the merged assemblies.

If I reference the original assemblies, they will have invalid references after I do the ILMerge.

If I reference the ILMerged assembly, I have to reference a debug assembly and then change it before I package everything up, which doesn't seem ideal.

I've tried creating a project called Foo, which references the 3 merged assemblies and replaces its own output with the ILmerged assembly, but that doesn't seem to work at all.

Is there a reliable way to do this?

Upvotes: 6

Views: 1657

Answers (2)

Jonathan Oliver
Jonathan Oliver

Reputation: 5267

I know I'm coming really late to the game, but we were struggling with this exact same problem and here is how we solved it.

First, we edited the csproj files of all non-merged or satellite projects to use a conditional reference to an external assembly based upon existence of a file. In this case, we're going to test for the existence of the merged assembly. Then we ran a build script which does the following:

  1. Builds the solution.
  2. Runs ILMerge on your primary assemblies with the output being the file in the conditional reference.
  3. Rebuild the solution, but this time because the merged assembly exists, the non-merged or satellite assemblies will now have the correct reference.

Upvotes: 3

JoeBilly
JoeBilly

Reputation: 3107

ILMerge is designed to create a new package/component as a boxed 'product' (API,Program...) to simplify assembly management like deployment, gac referencement, assembly visibility and more either for all-in-one use or external use, not mixed.

My guess is you have to setup a PostBuildEvent on your main assembly/project (Foo.Api?) if you have one or a PreBuildEvent in your Foo.Web and Foo.Web.Mvc projects to generate your merged Foo which will be referenced in your Foo.Web and Foo.Web.Mvc projects as an external assembly.

You can make this more integrated in Visual Studio by setting up a MsBuild task. A sample (from Stackoverflow).

Upvotes: 2

Related Questions