A super-simple way to combine C # programs (with multiple DLLs) into an EXE

Source: Internet
Author: User

Developers often refer to some third-party DLLs, and then compile the generated EXE files can not be separated from these DLLs run independently.

But most of the time we wanted to develop a gadget that would work perfectly with just one exe. What should we do then?

Here's a super-easy way to do it without writing a single line of code.

Here we need to use a tool called Fody.costura. The Fody.costura is a plug-in in a fody framework that can be installed into the VS project through NuGet. Once installed, you can package the DLLs (or even PDB) files that your project relies on in an EXE file.

How to use
    1. In VS, Costura.fody is installed through NuGet for the target EXE project.
    2. Re-build the project.

After the build is completed, the newly generated EXE file is found in the output directory of the project, and you will also find those DLLs still exist under the output directory. But don't worry, this exe has been able to run independently. You can delete all these DLLs and then run EXE to try again.

In addition, Fody.costura supports some advanced features, such as:

    • Temporary assembly file: Automatically extracts the DLL from the EXE to the folder system before running the EXE, and then loads the DLL in a regular manner.
    • Merging unmanaged DLL:Fody.Costura can merge unmanaged DLLs, but they do not automatically fit. If your program involves an unmanaged DLL, you need to show it by modifying the Fody.costura configuration file to tell it which unmanaged DLLs you want to merge.
    • Preloaded DLL:Fody.Costura can help you preload some DLLs when the program starts, and you can even specify the order in which these DLLs are loaded.

These advanced features require you to modify the Fody.costura configuration file to achieve, the specific steps can refer to its official documentation.

Well, the way Fody.costura is used has been introduced. If you're curious about how the Fody.costura works, you can look down.

Introduction to the principle of implementation

When the CLR tries to load an assembly but fails to load, it raises the Appdomain.assemblyresolve event. Our program can listen to this event and return the assembly that the CLR is trying to load in the handler of the event, thus allowing the program to continue to function properly.

Fody.costura will embed the DLLs referenced to the EXE file when building the project. When a program uses one of the DLLs while it is running (because the CLR cannot find the DLL file, causing the Appdomain.assemblyresolve event to be triggered), it extracts the required DLLs from the embedded resources of the EXE file.

The following two functions are the code that Fody.costura implements this part of the logic.

1  Public Static voidAttach ()2 {3    varCurrentDomain =Appdomain.currentdomain;4Currentdomain.assemblyresolve + = (s, e) = =resolveassembly (e.name);5 }6  Public StaticAssembly resolveassembly (stringAssemblyName)7 {8    if(Nullcache.containskey (AssemblyName))9    {Ten       return NULL; One    }     A  -    varRequestedassemblyname =NewAssemblyName (AssemblyName);  -  the    varAssembly =common.readexistingassembly (requestedassemblyname); -    if(Assembly! =NULL) -    { -       returnassembly; +    }     -  +Common.Log ("Loading assembly ' {0} ' into the AppDomain", Requestedassemblyname);  A  atAssembly =common.readfromembeddedresources (Assemblynames, Symbolnames, requestedassemblyname); -    if(Assembly = =NULL) -    { -Nullcache.add (AssemblyName,true);  -  -       //Handles retargeted assemblies like PCL in       if(Requestedassemblyname.flags = =assemblynameflags.retargetable) -       { toAssembly =Assembly.Load (requestedassemblyname); +       } -    } the    returnassembly; *}
View Code

As you can see, the Attach method listens to the Appdomain.assemblyresolve event. The Assemblyresolve event handler is executed when the CLR cannot successfully load an assembly. Assemblyresolve tries to get the target assembly from the embedded resource of the loaded assembly and returns it to the CLR through the Common.readfromembeddedresources method.

See here, you may ask, when is the Attach method executed?

In fact, for the C # language, the CLR hides a big trick--clr can execute some initialization code before each module (each assembly contains one or more modules) is loaded. Unfortunately, the C # language has no control over this part of the code. Fody.costura is to inject IL code internally into the initialization function of the internal module of the EXE assembly, and this part of the IL code actually executes the attach method. In this way, the EXE assembly is loaded, and the Attach method can be called immediately.

The above is a brief introduction to the principle of fody.costura implementation.

A super-simple way to combine C # programs (with multiple DLLs) into an EXE

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.