Including an external dependency inside of an extension?Solved
I'm building an extension for a server of mine that could use with a HTTP server running in the background.

The library I'm attempting to use in the extension is:

https://github.com/unosquare/embedio

I build my extension & copy over all the DLLs but I get an error on start of my server saying it can't find the external dependency even though It's 100% copied over to the Managed directory.

Is there anything I'm missing when using an external library as a DLL in my extension or is it not really feasible?

Cheers.
You'd need to make sure the extension is built for .NET 4.6 or lower for Rust. Aside from that, shouldn't be anything else you'd need to do for an extension.
Rebuilding for 4.6 worked.

I was targetting 4.6.1 so that was it.

Thanks for your help.
Locked automatically