Frank Bursitzke
Dec 23, 2014 | Last updated: Feb 20, 2024
Expert articles | 5 min read

There are several reasons to use ILMerge after a build. In case of a CRM Plug-In for example you cannot reference any Assemblies but those included in the CRM SDK and the .NET Framework itself. Well of course you can, but there are several disadvantages. Since you need to deploy those third party libraries to the GAC or the ServerbinAssembly directory, you cannot have different versions of those libraries for a multitenant environment. And after all you will be completely unable to deploy your Plug-In to a CRM Online/Office365 organization.

So usually one would go ahead after compiling the assembly and do a ILMerge on the command line or use a batch file that is executed after the build.

In this article I will show, how to include the ILMerge in the build itself. In the end, the build in Visual Studio will generate the merged assembly. Also there will be no additional steps required to have an automated build in Team Foundation Server (or whatever your favorite CI platform may be) to have the build generated the merged assembly as well.
Even if I use a CRM Plug-In in this example, this technique of course can be applied to any library or executable supported by ILMerge.So let’s get started.

Create the project

For this example, I will create a new project in Visual Studio called “MergedPlugin”. I will also create a Solution that contains the project. Since there is nothing I hate more than getting something from version control and being unable to compile, I create a folder called “_lib” in my solution, which will include all third party libraries necessary for the build. This will also ease the process of creating an automated build in TFS later on. For this example I will use the SharePoint Client SDK as my third party library that needs to be merged.

Note: Do not merge SharePoint Libraries into your Plug-In, if SharePoint is installed on the same machine as CRM as you will get errors during plug-in execution.

Additionally if you already haven’t download and install ILMerge, which can be obtained here. I also include the ILMerge.exe in my _lib folder. As a result, my solution now looks as:

Apply ILMerge

To include ILMerge in the msbuild process directly, we need to manually edit the project file. Therefor first unload the project by right clicking and choose “Unload project” from the context menu. Next open the project file in the Visual Studio editor by right clicking –> Edit MergedPlugin.vbproj (of course you will find here the actual name of you csproj/vbproj file). Now the project file will be opened in the XML editor.

Scroll down and locate the commented build target named “AfterBuild”:

Since we have to apply ILMerge after the Core Build executed, uncomment the AfterBuild-target. Next I will define two build properties. One which holds the output directory, since I cannot directly overwrite my assembly with ILMerge, so I will use a subfolder in the actual build output directory. The second is a shortcut to my _lib directory which holds the ILMerge.exe and my third party libraries. This is done by adding the following PropertyGroup to the AfterBuild target:

<PropertyGroup>
   <MergedDirectory>$(OutDir)Merged</MergedDirectory>
   <LibDirectory>$(MSBuildProjectDirectory).._lib</LibDirectory>
</PropertyGroup>

Next the output directory holding the merged assembly has to be created, making sure the build will not fail, if it already exists. This is done by adding the following line below the PropertyGroup:

<MakeDir Directories="$(MergedDirectory)" ContinueOnError="true" />

When the directory has been created, ILMerge will be executed using the Exec target from msbuild, which basically executes any command-line command including parameters. Remember, since this is XML, we have to encode quotation marks. For further reference of parameters supported by ILMerge just type ILmerge /? on the command line. I will use the following parameters:

  • t: Specify I want to create an assembly, not an executable
  • keyfile: I want my merged assembly to be signed with a strong name key
  • lib: Specifies the directory containing my third party libraries
  • out: The filename of the merged result.

The last parameters are the assemblies I want to have merged. If you do not specify a full path, then ILMerge will look those files up in the directory specified by the lib parameter.

<Exec Command="&quot;$(LibDirectory)ILMerge.exe&quot; /t:library 
      /keyfile:&quot;$(MSBuildProjectDirectory)MyKeyFile.snk&quot;
      /lib:&quot;$(LibDirectory.TrimEnd(''))&quot; /v4 
      /out:&quot;$(MergedDirectory)$(AssemblyName).dll&quot; 
      &quot;$(OutDir)$(AssemblyName).dll&quot;
      Microsoft.SharePoint.Client.dll Microsoft.SharePoint.Client.Runtime.dll" />

After adding a few lines of build messages in between, the AfterBuild target now should look like:

<Target Name="AfterBuild">
   <PropertyGroup>
      <MergedDirectory>$(OutDir)Merged</MergedDirectory>
      <LibDirectory>$(MSBuildProjectDirectory).._lib</LibDirectory>
   </PropertyGroup>
   <Message Text="Creating Merge-Output-Directory..." />
   <MakeDir Directories="$(MergedDirectory)" ContinueOnError="true" />
   <Message Text="Merging Assemblies..." />
   <Exec Command="&quot;$(LibDirectory)ILMerge.exe&quot; /t:library /keyfile:&quot;$(MSBuildProjectDirectory)MyKeyFile.snk&quot; /lib:&quot;$(LibDirectory.TrimEnd(''))&quot; /v4 /out:&quot;$(MergedDirectory)$(AssemblyName).dll&quot; &quot;$(OutDir)$(AssemblyName).dll&quot; Microsoft.SharePoint.Client.dll Microsoft.SharePoint.Client.Runtime.dll" />
   <Message Text="Assemblies merged" />
</Target>

Now save and close the and reload the project.

Result

After compiling, there should be a subdirectory names “Merged” in you build specific output folder (e.g. binDebug) which contains the merged assembly with the same name as the original assembly, signed by the same key.

If you get build errors, you might need to adjust the directories to your actual folder structure. You can use the build output console as a hint to figure out the actual command.

The assembly will also be merged in any automated build without additional steps necessary – of course, as long as you check in the _lib folder as well.

Answering