Combining .net managed dlls

I have a managed dll "Sample.dll" that I use to create my dll "myDLL.dll". But I want to distribute only 1 dll file ("myDLL.dll"). How to combine them?

+6
dll
source share
2 answers
+2
source share

ILMerge works well and does this for the most part.

Remember there are problems if you do this with WPF builds containing Xaml. I suspect Workflow 4 projects may have the same problems. Inline Xaml does not merge properly with ILMerge.

There are some commercial tools, however, claims to support merging assembly with WPF projects, including .NET Reactor and SmartAssembly .

+5
source share

All Articles