2

I installed Costura Fody via Nuget and embedded the appropriate dll's into one single dll. From the output window I can see that this is a success

enter image description here

I reference the created dll in the project I want to use it

enter image description here

and remove the references to the individual dll's that is now embedded. How do I access the namespaces of the embedded dll's? The only namespace available is Costura, so I can do a

using Costura;

but all my types are now unrecognised. Is thre something else that I have to do?

Andre Lombaard
  • 6,985
  • 13
  • 55
  • 96

1 Answers1

0

Just add the using references as per normal. You should not remove namespace references to the libraries embedded by Costura.

Cameron MacFarland
  • 70,676
  • 20
  • 104
  • 133