SmartAssembly - 5.5

SmartAssembly

Learning SmartAssembly - 5.5

Embedding dependencies

Embedding dependencies simplifies the deployment and maintenance of your software, reduces the total size of your software, and ensures that dependencies are always available.

Using dependencies embedding

To use dependencies embedding, in the project settings window, either scroll to the Dependencies Embedding feature settings pane, or, on the toolbar, click the dependencies embedding icon.

Select the dependencies to embed. To refresh the list, click Rescan dependencies.

When dependencies embedding is enabled, the colored bars under the toolbar icon and to the left of the features options are green. If it is disabled, the bars are orange.

Note:

  • You cannot embed dependencies in assemblies using .NET 1.x, any version of Compact Framework or XNA.
  • You cannot embed dependencies in a web application that is loaded from the GAC. This will cause a FileNotFound exception in the web application.
  • You cannot use name mangling or control flow obfuscation on embedded dependencies.

Compression and encryption of dependencies

When you enable dependencies embedding, you can also choose to compress and/or encrypt the embedded dependencies. Click the icon next to each dependency in the list to choose whether to compress or encrypt that dependency.

Embedding example

The following example shows code before and after embedding DLL1 and DLL2 in MainExe:

Before embedding:

DLL1:

internal class InvalidDocumentContentsException : Exception

public sealed class DiscoveryDocument

DLL2:

internal class InvalidDocumentContentsException : Exception

internal class LinkGrep

MainExe:

public sealed class DiscoveryClientResult

internal struct CallId

After embedding:

MainExe:

public sealed class DiscoveryClientResult

internal struct CallId

Resource1 (containing compressed/encoded contents of DLL1)

Resource2 (containing compressed/encoded contents of DLL2)

What is the difference between merging and embedding?

Merging

When you merge a dependency with the main assembly, the code from the two assemblies are merged into a single assembly. The resulting assembly does not contain a reference to the dependency. Calls are no longer public (by name) but internal (by member ID), which provides greater protection and is quicker.

You can protect a merged dependency by obfuscating the whole assembly in the normal way.

Embedding

With embedding, the dependency is compressed is then stored in the main assembly. At runtime, the first time the DLL is needed, it is decompressed and an assembly is created and loaded into memory. The embedded assembly keeps its identity and its integrity. If you embed a dependency, the main assembly is not modified.

To protect the dependency, first protect it in a separate SmartAssembly project and then embed the obfuscated DLL.

See also

Merging dependencies

Was this article helpful?

Search support
Forums
Visit the SmartAssembly forum.

SmartAssembly

all products