Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Merging DLLs into Your Main Assembly for Easier Distribution

2 Apr 2012 1  
Distributing applications with DLL dependencies can be problematic. Here we explain how to make distribution easier by combining these dependencies into the main assembly.

This article is in the Product Showcase section for our sponsors at CodeProject. These articles are intended to provide you with information on products and services that we consider useful and of value to developers.

Compiling .NET code often results in multiple assembly files being created, including satellite DLLs, all of which are required for the program to run. While this is a non-issue during development, when it comes to deployment it often means an unwanted stage of users having to unzip files, or manually move certain DLLs to specific places.

SmartAssembly is capable of merging the code from referenced DLLs into the main assembly, producing a single application for deployment and so greatly simplifying the process.

When merging dependencies, SmartAssembly completely integrates the dependency code into the main assembly code. Instead of making public calls (by name), the resulting assembly instead makes internal calls by Member ID. As well as making deployment easier, this also provides some level of protection against people examining and reverse-engineering sensitive code.

Merging referenced DLLs is a simple process. After adding the main assembly to a project as the input, and selecting an output destination, SmartAssembly automatically scans for dependencies and presents a list. We select the DLLs we wish to merge and click ‘Build’ to generate the output file.

Merging-DLLs/image001.png

Figure 1: Merging assemblies with dependencies in SmartAssembly

There are some limitations to what can be successfully merged. For example, some third-party DLLs will include integrity protection, which causes the DLL to fail to load as its contents will appear to have been modified.

For these instances, SmartAssembly supports dependency embedding, which allows referenced DLLs to be embedded into the main assembly as resources, instead of being merged into the main assembly’s contents. It is also capable of compressing these resources and dynamically uncompressing them at runtime, significantly reducing the distributed file size.

Merging-DLLs/image002.png

Figure 2: The difference between merging and embedding assemblies

As well as merging and embedding dependencies, SmartAssembly can apply powerful obfuscation to assemblies, preventing malicious users from decompiling them. It can also add Automated Error Reporting, a sophisticated mechanism for receiving reports of any unhandled exceptions which occur when your application is used in the wild, along with all the data needed to diagnose them.

SmartAssembly can be controlled through the command-line, so it is easily integrated into the build process, providing simple, reliable merging of dependencies on every build.

Learn more about SmartAssembly, or download your free trial.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here