I have a class library which contains WPF user control. This library has some dependencies but I want to deploy it as one assembly. As I know IlMerge has some problems with WPF. I tried Costura but it works only for applications, not for class…
using Fody/Costura to embedding dll file to single file is ok and all works good .
but if i physically put dll file in executable folder and run application , application hook dll file and when i want to edit or delete dll file it throw an exception…
Is there any possible way of moving the runtimes and *.exe.WebView2 folders created by the Microsoft WebView2 WPF package to a different folder or perhaps embedding them?
The 2 folders are selected in the screenshot below.
I already use…
I currently have a program that is using Costura but there seems to be a stackoverflow error that causes it to crash. I checked the call stack and noticed that Costura.AssemblyLoader.ResolveAssembly and…
We used Fody Costura to pack a complex WPF application. Now, we want to uninstall it because of the huge size of the resulting executable.
We deleted the nuget-packages (Fody, Fody-Costura) from all assemblies and deleted all bin and obj folders.…
I would like to get a Single .EXE File so I'm using Costura.Fody.
After adding its NuGet package all of the DLLs are embeded to the .EXE file as expected.
The problem is that I get all of those .xml files:
PS1: I'm using .NET Framework 4.6.1 (not…
I am trying to build a WinForms class library including CefSharp as a single .dll file.
I installed CefSharp 81.3.100.0 and Costura.Fody via NuGet.
The compiled .dll file is working as an addon to an existing WinForms application.
When I try to…
To me, merging .Net binaries so that I'm left with one single file executable was always a both interesting and important feature. From what I've read, there are three approaches regarding this:
ILMerge
Really merges the assemblies. Comparable to…
How can I Execute Obfuscar Before Fody.Costura Merge the Files Because Merged Files Are not obfuscated, using Fody.Costura compression or wihout it.
I've downloaded https://github.com/obfuscar/example.git project example for obfuscar, then I've…
I have built a little Windows service that runs on a client's machine, connects to a local database and posts that data to a webservice. I'm using Topshelf with Ninject, and the code is essentially boilerplate, right from the template. I added…
I create primarily programs that are addins to a different parent software; other people and companies make addins for the parent software as well. This becomes a problem when two companies use different versions of the same third party library,…
Has anyone tried or had any success embedding CefSharp in their application using Fody/Costura? I am not sure if it's possible, but if it is, I'm not having any luck getting the configuration of Costura correct.
I have an app that references a .dll that was built with Costura/Fody i.e The dll has all its references embedded. When I run the console app, the references from the dll are not unpacked so the console app throws an exception saying missing .dll…
Recently I came across a NuGet package for modifying .NET assemblies, in particular, there was a Costura NuGet "plugin" for the Fody package which merges assemblies after the C# compiler completes.
I was not able to find any modifications to the…
I've built a WPF application, and used Costura.Fody to combine it into one exe. This has worked until today, and the only change that I know of is that I upgraded Visual Studio (Community edition to 15.7.2).
It now throws an error when building,…