DEV Community

jeikabu
jeikabu

Posted on • Originally published at rendered-obsolete.github.io on

Migrating from MEF1 to MEF2

N.B. I originally wrote the bulk of this text 2017/12/28 and am posting it now since it was useful at the time.

While moving part of our codebase to .Net Standard 2.0 so everything runs atop .Net Core, we had to deal with moving from MEF1 (which is not in .Net Core) to MEF2 (which is).

This blog post got me started, or at least validated that the move was possible, rather. But, it didn’t really have the details matching our usage.

Packages

The simplest changes involved is moving from .NetFramework:

using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;

Enter fullscreen mode Exit fullscreen mode

To packages available from nuget:

using System.Composition;
using System.Composition.Hosting;

Enter fullscreen mode Exit fullscreen mode

It’s worth mentioning that System.ComponentModel.DataAnnotations can be used as-is, but the package still has to be downloaded from nuget.

Code Changes

It seems that several other people are dealing with similar issues, because there were a few StackOverflow questions that were helpful:

We had a DynamicLinq.cs:

AssemblyBuilder assembly = AppDomain.CurrentDomain.DefineDynamicAssembly(name, AssemblyBuilderAccess.Run);  
// SNIP
Type result = tb.CreateType();

Enter fullscreen mode Exit fullscreen mode

That needed to get changed to:

AssemblyBuilder assembly = AssemblyBuilder.DefineDynamicAssembly(name, AssemblyBuilderAccess.Run);  
// SNIP
Type result = tb.CreateTypeInfo();

Enter fullscreen mode Exit fullscreen mode

A more complicated case is how we load the assemblies, first via MEF1:

CompositionContainer container;  
[ImportMany(typeof(IWorker))]  
IEnumerable<Lazy<IWorker, IWorkerMetadata>> workerPlugins { get; set; }  
public void Init(string path)  
{  
  var files = Directory.EnumerateFiles(path, "*Service.dll", SearchOption.AllDirectories);  
  var catalog = new AggregateCatalog();  
  foreach (var file in files)  
  {  
    try  
    {  
      var asmCat = new AssemblyCatalog(file);  
      if (asmCat.Parts.ToList().Count > 0)  
        catalog.Catalogs.Add(asmCat);  
    }  
    catch (ReflectionTypeLoadException)  
    {  
    }  
    catch (BadImageFormatException)  
    {  
    }  
  }  
  container = new CompositionContainer(catalog);  
  container.ComposeParts(this);  
}  

Enter fullscreen mode Exit fullscreen mode

And then with MEF2:

CompositionHost container;  
public void Init(string path)  
{  
  var configuration = new ContainerConfiguration();  
  var files = Directory.EnumerateFiles(path, "*Service.dll", SearchOption.AllDirectories);  
  foreach (var file in files)  
  {  
    try  
    {  
       var asm = Assembly.LoadFrom(file);  
       configuration.WithAssembly(asm);  
    }  
    catch (ReflectionTypeLoadException)  
    {  
    }  
    catch (BadImageFormatException)  
    {  
    }  
  }  
  container = configuration.CreateContainer();  
}  

Enter fullscreen mode Exit fullscreen mode

Both of these are simplified but should still be illustrative.

Side-by-Side

In the original post I decribed here how we were loading both MEF1 and MEF2 assemblies in the same application.

I thought that MEF1 was used with .Net Framework assemblies and MEF2 with .Net Standard. Anything that was incompatible with .Net Standard had to go in a Framework assembly- and therefore MEF1. I since realized MEF2 could load assemblies targetting either framework and have removed all our MEF1 code.

In any case, you can load both in an application. Which might be useful if you have a number of existing/legacy modules.

Todo

One of the tasks that’s been in my backlog for a while is re-visiting how we handle MEF2. In particular:

  • Verifying our signed assemblies
  • Checking meta-data before loading/initializing

When I do it will certainly result in a follow-up post.

Top comments (0)