I got an application that load plugins via MEF.
The application is running in several instances on a terminal server.
When I need to test a new plugin in the production environment I redirect MEF to another folder. The problem is that sometimes the assemblies are loaded from the original folder even after redirection. It does not happen every time and I can not reproduce it on my machine. I suspect it is some kind of cache problem.
The MEF loading code looks like this:
using (var catalog = new AggregateCatalog()) {
Console.WriteLine("Loading components from {0}", folder);
catalog.Catalogs.Add(new DirectoryCatalog(folder, "*.dll"));
using (var container = new CompositionContainer(catalog)) {
try {
container.ComposeParts(this);
}
catch (ReflectionTypeLoadException ex) {
foreach (var loaderException in ex.LoaderExceptions) {
// log loading error
}
}
foreach (var assembly in _allComponents.GroupBy(x => x.GetType().Assembly)) {
Console.WriteLine("Loaded from {0}", assembly.Key.CodeBase);
}
The result from the code above looks like
Loading components from C:\NewPlugins
Loaded from C:\OldPlugins
DirectoryCatalogis a bad name since it loads assemblies by identity and not from a directory. – adrianm Mar 10 at 12:59