I have written my application to be a class library that is launched by a win32 MFC application. Each of my views is a separate assembly that is located with the base class library that is located in a sub-directory of the hosted MFC application.
My question is, how can I get MEF to resolve the dependencies of my exported classes using the assemblies from this sub-directory instead of the root directory?
This is what I want:
ParentFolder myapp.exe SubFolder myMvvmWindow.dll myMvvmSubWindow.dll *Microsoft.Expression.Interactions.dll*
This is what I have to have now:
ParentFolder myapp.exe *Microsoft.Expression.Interactions.dll* SubFolder myMvvmWindow.dll myMvvmSubWindow.dll
You can also do this in your app.config file:
Is it possible to set assembly probing path w/o app.config?
This is generally how I handle it.