Hello,
I have a C# application with many DLL's. The application implements a plugin architecture allowing another programmer to write a plug in and drop the resulting DLL into the "plugins" directory of my application. I am having some problems with the references of these DLL's. Currently, with certain DLL's, when I called Assembly.LoadFi le, then Assembly.GetExp ortedTypes on the loaded assembly, I get an error stating that the dependencies for this DLL cannot be found. The DLL it relies on is actually in the same directory, but because this directory is not the application root, it can't find them.
I am pretty inexperienced with DLL stuff, is it possible to get my application to look in more than just the root directory for DLL's?
Thanks in advance.
I have a C# application with many DLL's. The application implements a plugin architecture allowing another programmer to write a plug in and drop the resulting DLL into the "plugins" directory of my application. I am having some problems with the references of these DLL's. Currently, with certain DLL's, when I called Assembly.LoadFi le, then Assembly.GetExp ortedTypes on the loaded assembly, I get an error stating that the dependencies for this DLL cannot be found. The DLL it relies on is actually in the same directory, but because this directory is not the application root, it can't find them.
I am pretty inexperienced with DLL stuff, is it possible to get my application to look in more than just the root directory for DLL's?
Thanks in advance.
Comment