Roundcrisis

About Contact me Presentations rss feed  rss

MEF and AppDomains

02 Jan 2014

The last few days I’ve been playing with MEF.

MEF is pretty cool, it allows you to recompose your application on the fly so I thought I should try it, I ended up looking at “The Way of MEF”, a series of samples from Glenn Block, pretty good to look at some code and understand what can you do in a clear way. I wish there was a video to go with it because you get the sense that he had a lot to say while those slides were rolling. Anyway, the samples were great,

I think there are better places to learn about MEF, I compiled a bundle of links here, some cool things

What I am trying to achieve is to be able to reload new versions of a type on the fly, not only at runtime, at debug time too. The first part is possible within one AppDomain, however not so, the second part (the debuggin part) you can see some code I was trying this with in this github repo (this is really one of the samples from Way of MEF, with a few changes but nothing big). I am sure you are wondering, why, why is it not possible to Debug? Well, it depends :) you can actually debug a little bit but as soon as you start trying to reflect on types you hit the error: “The type <your type> is available in both assembly.dll and assembly.dll” this points to a solution with multiple AppDomains, and I am trying to avoid that.

By the way, in the github sample above I hit a problem, if build, run the exe from the bin/Debug folder while you have the solution open in VS and recompile Bar then the instance will be copied as expected but not updated, if you build from anywhere else (including a different instance of VS) then all is peachy.

I ll report again when I figure what is the impact on my case for multiple AppDomains or if I find an alternative solution.

Categories:   MEF   AppDomain   .net

Want to discuss this post? the best place right now for me is mastodon, please message me @roundcrisis@types.pl with your comment or question.