I have installed costura.fody into my project using nuget package. I have updated the FodyWeavers.xml file with:
<Costura
Unmanaged32Assemblies='dllname'
Unmanaged64Assemblies='dllname' />
when I rebuild it and try to run the exe on seperate PC without the dll it doesnt work. Am I missing something ? Do I need to add anything else. I have also tried the following :
<IncludeAssemblies>
dllname
</IncludeAssemblies>
Thank you for the help in advance.
Make sure "Copy Local" is set to "True" within the reference properties tab on your desired libraries. Costura will not embed anything that does not have this setting enabled.