I have this (native) COM server, let's call it N.dll, that calls some API from a managed assembly, let's call it M.dll. For that to work, a mixed-mode DLL exists to interop the two; let's call this MM.dll. The three DLLs (N, M and MM) reside in the same DLL, and the COM server is obviously appropriately register.
I'm using the M.dll assembly with a using directive in MM.dll.
#using "M.dll"
using namespace M;
And then just instantiate and use the types available in M.
Now, this COM server can be instantiated by any application, residing anywhere in the system. That, obviously works all right. But as soon as N needs to call the API from M (via MM), I get an System.IO.FileNotFoundException (Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'M, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.)
If I copy the M.dll assembly to the same folder where the executable is, then everything works fine. However, this is not a solution, since there can be a lot of apps consuming the COM server, and I cannot deploy M.dll to all those places. And I also cannot do something with a config file for the process, for the same reason. I need a way to tell the mixed-mode MM.dll module to load the managed assembly from the same folder where it is located.
Is that possible?