Reputation: 57832
I have a solution in Visual Studio with 5 projects. They are:
Foo.Core
: Core functionalityFoo.Api
: Generated code built on top of coreFoo.Web
: Web-specific extensionsFoo.Web.Mvc
: MVC-specific extensionsNewtonsoft.Json
: 3rd party libraryI 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
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:
Upvotes: 3
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