I am trying to add a managed dll "Emgucv.dll" and unmanaged dll "cvextern.dll"
I have both dlls in the lib\x64
directory
When I try to add a reference to the managed dll, using Browse, it automatically moves the dll to the root folder of my project. Then it is unable to find the cvextern.dll
until I also move that to the root of y project and set it to copy if newer
However, I would like to keep both dlls in the lib\x64
directory
Is there a way to add the path to using Emgu.CV
directive? Or to add a search folder to C# project configuration?
I tried adding to app.config
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="lib/x64" />
</assemblyBinding>
</runtime>
But this made no difference