IlMerge is a great way to merge multiple .NET assemblies into one, and I use it most often to combine assemblies with console applications so I end up with one executable..
However getting the latest version always was a hassle as the ilmerge download link was unclear about the version number.
Until I found out that IlMerge is on NuGet.
To get started with NuGet, either download the NuGet GUI or command-line version, then use either of these entry points to work with NuGet packages:
- from the command prompt:
nuget install ilmerge
- from the Package_Manager_Console_Window in Visual Studio or PowerShell:
Install-Package ilmerge
There is much more to the Package Manager Console and the Package Manager Dialog.
–jeroen