vote up 6 vote down star
6

If you create a class library that uses things from other assemblies, is it possible to embed those other assemblies inside the class library as some kind of resource?

i.e.

Instead of having MyAssembly.dll, SomeAssembly1.dll and SomeAssembly2.dll sitting on the file system, those other two files get bundled in to MyAssembly.dll and are usable in its code.


I'm also a little confused about why .NET assemblies are .dll files. Didn't this format exist before .NET? Are all .NET assemblies dlls, but not all dlls are .NET assemblies? Why do they use the same file format and/or file extension?

flag

5 Answers

vote up 10 vote down check

Take a look at ILMerge for merging assemblies: http://www.microsoft.com/downloads/details.aspx?FamilyID=22914587-b4ad-4eae-87cf-b14ae6a939b0&displaylang=en

I'm also a little confused about why .NET assemblies are .dll files. Didn't this format exist before .NET?

Yes

Are all .NET assemblies dlls,

Either .dlls or .exe normally - but can also be .netmodule

but not all dlls are .NET assemblies?

correct

Why do they use the same file format and/or file extension?

Why should it be any different - it serves the same purpose!

link|flag
.netmodule is for Modules, which are parts of an assembly (e.g., built with different language compilers) but aren't standalone assemblies. – Mark Cidade Oct 21 '08 at 17:13
vote up 7 vote down

ILMerge does merge assemblies, which is nice, but sometimes not quite what you want. For example, when the assembly in question is a strongly-named assembly, and you don't have the key for it, then you cannot do ILMerge without breaking that signature. There may be other reasons as well. As an alternative to ilmerge, you can embed one or more assemblies as a resource into your exe or DLL, and then extract the assembly programmatically, and load and run it.

To do it, embed an assembly, just as you would embed any other resource (image, translation file, data, etc). Then, set up an AssemblyResolver that gets called at runtime. It should be set up in the static constructor of the startup class. The code is very simple.

    static NameOfStartupClassHere()
    {
        AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(Resolver);
    }

    static System.Reflection.Assembly Resolver(object sender, ResolveEventArgs args)
    {
        Assembly a1 = Assembly.GetExecutingAssembly();
        Stream s = a1.GetManifestResourceStream(args.Name);
        byte[] block = new byte[s.Length];
        s.Read(block, 0, block.Length);
        Assembly a2 = Assembly.Load(block);
        return a2;
    }

The Name property on the ResolveEventArgs parameter is the name of the assembly to be resolved. If you have embedded your assemblies properly, you can just call GetManifestResourceStream() with the assembly name and load the assembly that way. Very simple.

In a real app you're gonna want some better error handling in that routine - like what if there is no stream by the given name? What happens if the Read false? etc. But that's left for you to do.

In the rest of the application code, you use types from the assembly as normal.

When you build the app, you need to add a reference to the assembly in question (Eg, use the /r option in csc.exe), as you would normally.

Assembly version-checking and verification works as usual.

The only difference is in distribution. When you deploy or distribute your app, you need not distribute the DLL for the embedded assembly. The DLL is in your app already.

link|flag
vote up 4 vote down

You can embed an assembly (or any file, actually) as a resource (and then use the ResourceManager class to access them), but if you just want to combine assemblies, you're better off using a tool like ILMerge.

EXE and DLL files are Windows portable executables, which are generic enough to accomodate future types of code, including any .NET code (they can also run in DOS but only display a message saying that they're not supposed to run in DOS). They include instructions to fire up the .NET runtime if it isn't already running. It's also possible for a single assembly to span across multiple files, though this is hardly ever the case.

link|flag
vote up 2 vote down

There's also the mkbundle utility offered by the Mono project

link|flag
vote up 2 vote down

Note ILMerge doesn't work with embedded resources like XAML, so WPF apps etc will need to use Cheeso's method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.