Do you ever need to merge multiple assemblies (DLLs) to deploy it in your Dynamics 365 Organization? Whatever the answer, I will tell you the background of why you should consider it. All of us must understand, as a programmer, we do some repetitive operations. Eg: general validation logic if the user in position “A”, don’t allow it to do any CRUD. Or you just want to make use of JSON Serializer in Newtonsoft. If you did not make/use a library for it, most likely you violate the DRY (Don’t Repeat Yourself) principle. It will cost you lots of problems in the future. But that is another topic. 🙂
Whenever someone asked about merging third party assemblies in our beloved Dynamics Community Forum, there was only one answer to it: ILMerge. First, I don’t hate ILMerge. But must be some explanation of why you choose ILMerge over others if there is an alternative to it (ILRepack). Here is my reason why I choose ILRepack.
For the demonstration, I will show you the solution that we will merge:

There are Project, Lib, and third-party assembly Niam.Xrm.Framework that we will merge.
Here is the original size of the assemblies in the bin folder:

If you have ILRepack.exe, here is the command:
ILRepack.exe /keyfile:key.snk /parallel /out:D:\ILRepack\Result\Demo.Plugins.ILRepack.dll Niam.XRM.Framework.dll Demo.Plugins.dll Libs.dll
If you have ILMerge.exe, here is the command:
ILMerge.exe /keyfile:key.snk /out:D:\ILMerge\Result\Demo.Plugins.ILMerge.dll Niam.XRM.Framework.dll Demo.Plugins.dll Libs.dll
This is the result of the ILRepack and ILMerge side by side:

Summary
As you can see, ILRepack result (2.794 KB) win (in size) compare to ILMerge result(3.177 KB).
Hi Temmy – do you have any info if ILRepack is supported for plugins, since ILMerge is not?
LikeLike
Hi Jonas, last time when I post it in LinkedIn, got someone mention need to use .NET Shared Project feature. It will directly merge into the assembly and is the way Microsoft recommend it. If got time, I’ll check on it and share it again.
LikeLike
Absolutely shared project is preferred as long as you have access to the source code.
But since this article is about “the other scenario” where you don’t, it would be good to know if ILRepack is accepted by MS since ILMerge is not.
Ref: https://www.develop1.net/public/post/2018/10/21/ILMergeNotSupported
LikeLike