-
Creating a single executable from multiple .NET assemblies
Problem You have a .NET application that uses multiple assemblies but you want it as a single executable. Solution Use ILMerge to merge the assemblies into one executable. Solution (with WPF support) Embed the required assemblies as embedded resources in your project and extend the assembly resolving to check the embedded resources (see second link…