I'm using C# Express 2010. I made a WPF application with free VIBlend Edit controls, these controls uses the corresponding dlls, is it possible to create a stand alone executable? I want to copy only the exe to another machine (the framework is installed of course), but I don't want to copy the dll!
.NET stand alone executable
1.1k views Asked by Tom At
5
There are 5 answers
0
On
Not really unless you have the source code to the library and then are willing to spend the time to resolve all the problem you will have when you merge the code into your executable assembly.
If you use a product to merge assemblies (such as SmartAssembly) then you can merge it all into one EXE, but SmartAssembly is not free. (It's a great product, though, that does much more than just merging assemblies)
ILMerge
Here are a couple of resources regarding ILMerge that you might find helpfull:
Using GAC
What you can do is have the DLL's registered in the Global Assembly Cache ( GAC ) on the client machine, this way it could use the assemblies from there.
But they would have to be installed into GAC.
Edit
It seems like I was wrong, however I would strongly advice against including third party dll's into one executable because it might not be allowed by the license aggreement.