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
I reference the created dll in the project I want to use it
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?