Tagged Questions
The Managed Extensibility Framework (MEF) simplifies the design of extensible and modular applications, and is a standard component of Microsoft .NET 4.0 and Silverlight 4.0
54
votes
5answers
11k views
Choosing between MEF and MAF (System.AddIn)
The Managed Extensibility Framework (MEF) and Managed AddIn Framework (MAF, aka System.AddIn) seem to accomplish very similar tasks. According to this Stack Overflow question, Is MEF a replacement for ...
35
votes
4answers
4k views
MEF vs. any IoC
Looking at Microsoft's Managed Extensibility Framework (MEF) and various IoC containers (such as Unity), I am failing to see when to use one type of solution over the other. More specifically, it ...
33
votes
6answers
5k views
Where can I learn about MEF?
I watched the DNR TV episode with Glenn Block and it looks like MEF would be useful for my company. I am trying to find out more information on it's strengths and weaknesses and some sample projects ...
33
votes
3answers
7k views
MEF (Managed Extensibility Framework) vs IoC/DI
What problems does MEF (Managed Extensibility Framework) solves that cannot be solved by existing IoC/DI containers?
26
votes
3answers
9k views
Visual Studio 2010 addin writing articles/tutorials? [closed]
Does anyone know of some good articles / tutorials on writing addins/plugins for Visual Studio 2010?
22
votes
3answers
963 views
Looking for a practical approach to sandboxing .NET plugins
I am looking for a simple and secure way to access plugins from a .NET application. Although I imagine that this is a very common requirement, I am struggling to find anything that meets all my needs:
...
21
votes
4answers
3k views
Prism v4: Unity or MEF?
I downloaded Prism v4 and ran the installer. I went into the directory and ran the two following batch files:
Desktop only - Open Modularity With Mef QuickStart.bat
Desktop only - Open Modularity ...
20
votes
3answers
640 views
What is different between and purpose of MEF and Unity?
I just start study DI (I'm working on WPF/Silverlight but I have a plan to move to ASP.NET). After I read some DI articles from internet there are two Frameworks that I'm interested in, MEF and Unity. ...
18
votes
2answers
380 views
.NET exception caught is unexpectedly null
See below for an explanation of what is going on
I have a really weird issue where the exception caught is null.
The code uses MEF and tries hard to report composition errors. Using the debugger I ...
18
votes
6answers
7k views
Implementing MEF with ASP.NET MVC?
I am trying to find out if anyone has any experience or ideas of using MEF (Managed Extensible Framework (Microsoft's new plugin framework) with ASP.NET MVC. I need to create a standard ASP.NET MVC, ...
17
votes
3answers
2k views
What are MEF best practices?
What are some best practices for using MEF in your code? Are there any pitfalls to take into account when starting your extensible application? Did you run into anything you should have known earlier?
...
16
votes
9answers
4k views
Whither Managed Extensibility Framework for .NET?
Has anyone worked much with Microsoft's Managed Extensibility Framework (MEF)? Kinda sounds like it's trying to be all things to all people - It's an add-in manager! It's duck typing! I'm wondering if ...
15
votes
4answers
9k views
Is MEF a dependency injection framework?
The recently announced managed extensibility framework (MEF) of .NET 4.0 - is it a dependency injection framework? Will Microsoft Unity from Patterns and Practices be obsolete in 4.0 ? How does MEF ...
15
votes
4answers
2k views
Is MEF a replacement for System.Addin?
Is the Managed Extensibility Framework a replacement for System.Addin? Or are they complementary?
13
votes
1answer
2k views
How can I write a plugin for VS2010 using MEF?
I've seen lots of MEF code for plugging into custom apps, but I am yet to find out how to write a plugin for VS2010 using MEF. I was under the impression that the new IDE supported this.
Does anyone ...
13
votes
2answers
4k views
Is MEF OSGi for .NET?
I'm just trying to get my head around the Managed Extensibility Framework (MEF) at the moment and digging into a bit. I have an Eclipse background so in my brain I currently have the equation:
MEF ...
12
votes
1answer
336 views
Rookie question on POCO - MEF and EntityFramework architecture
and thanks in advanced.
I am building my workstation Agent application using MEF and EntityFramework 4.
The application is a simple agent that runs on a computer with a plug-in architecture (and ...
12
votes
3answers
1k views
How does MEF determine the order of its imports?
MEF allows you to import multiple parts via the use of the ImportMany attribute. How does it determine the order in which it retrieves the relevant exports and adds them to the enumerable you are ...
11
votes
3answers
555 views
Methods for composing configuration for composite applications (eg PRISM, MEF)
Frameworks such as PRISM and MEF make it very easy to design complex applications out of multiple, composable components. One common example of this is a plug-in architecture where an application ...
11
votes
5answers
1k views
Using MEF as an IoC
After reading some stuff such as this: http://mikehadlow.blogspot.com/2008/09/managed-extensibility-framework-why.html
I understand that MEF has some featcures that I will not find in an IoC, and ...
10
votes
4answers
920 views
Help getting started with MEF
I was reading somewhere that with MEF I can simply drop a dll into a directory and my application (with some MEF magic) will be able to read it and execute the code in it?
Hopefully only classes that ...
10
votes
2answers
2k views
Does MEF require .NET 4?
I am using Visual Studio 2010, try to create a MEF application. Does this require .NET 4.0 or can I target .NET 2.0?
9
votes
4answers
675 views
Replace assembly at runtime with .NET
Is there a way with a plugin system (I would use with an IoC container) to load one version of an assembly at runtime and then replace that DLL while the AppDomain is running? I don't want to restart ...
9
votes
2answers
1k views
What should I use in Prism- MEF or Unity?
Found several good(related) questions here and here but all are nearly a year old.
I will like to know in the current context of Prism development what is better or at least scenario where each is ...
9
votes
2answers
1k views
Dispose components by MEF container?
I use MEF to map interface to implementation class as a way of DI. For example, I use the Import attribute for an interface, and Export for implementation class. My understanding is that the MEF ...
9
votes
4answers
5k views
MEF vs. PRISM. What is the difference? What will be supported in the future?
I have read similiar posts but I it not clear to me.
What I want to create is a Silverlight apps with a few tabs/modules that will all be seperate DLLs.
I see PRISM has the Shell/Module concepts ...
9
votes
3answers
7k views
8
votes
3answers
179 views
Disadvantages of Lazy<T>?
I have started to use Lazy<T> throughout my application and I am wondering if there are any obvious negative aspects that I need to take into consideration?
I have been trying to utilize ...
8
votes
2answers
363 views
MEF Dependencies and versioning
I have a system that uses MEF to load parts. Each of these parts rely on a core library. When I build the project, I add a version number to the .dll files like this:
part1-1.0.0.0.dll
...
8
votes
4answers
4k views
Prism/MVVM (MEF/WPF): Exposing navigation [Menu's for example] from modules
I am starting my first foray into the world of Prism v4/MVVM with MEF & WPF. I have sucessfully built a shell and, using MEF, I am able to discover and initialise modules. I am however unsure as ...
8
votes
2answers
1k views
New Prism Project - Use MEF or Unity?
I'm starting a new personal Prism 4 project. The Reference Implementation currently uses Unity.
I'd like to know if I should use MEF instead, or just keep to Unity.
I know a few discussions have ...
8
votes
2answers
559 views
How do I use constructor dependency injection to supply Models from a collection to their ViewModels?
I'm using constructor dependency injection in my WPF application and I keep running into the following pattern, so would like to get other people's opinion on it and hear about alternative solutions.
...
8
votes
2answers
516 views
What is the Managed Extensibility Framework (MEF)?
I googled and got only a few articles about MEF. Would someone please explain in brief:
What is the Manage Extensibility Framework?
For what purpose is it needed?
How can I start working with it?
...
8
votes
1answer
2k views
Writing Visual Studio 2010 Plugin, would like to show a toolbox like Resharper in code editor
I would like to write a plugin for Visual Studio 2010 but in fact I face some problems. What I want to do seems easy, I would like that a little toolbox appears when selecting the text in code editor ...
7
votes
4answers
173 views
User permissions based MEF components
I did my first steps toward MEF few month ago and everything seemed to be okay till now. What I want to do is to use MEF in now of my real applications and load or we can say display UI components ...
7
votes
3answers
567 views
PRISM + MEF — How to specify which export to use?
Basically, how can I specify which of my implementations to choose from?
FooService.cs:
public interface IFooService
{
Int32 GetFoo();
}
[Export(typeof(IFooService))]
public sealed class Foo100 ...
7
votes
2answers
2k views
ASP.NET MVC: Views using a model type that is loaded by MEF can't be found by the view engine
I'm attempting to create a framework for allowing controllers and views to be dynamically imported into an MVC application. Here's how it works so far:
I'm using .NET 4, ASP.NET MVC 3 RC and the ...
7
votes
3answers
904 views
Handle ReflectionTypeLoadException during MEF composition
I am using a DirectoryCatalog in MEF to satisfy imports in my application. However, there are sometimes obfuscated assemblies in the directory that cause a ReflectionTypeLoadException when I try to ...
7
votes
2answers
928 views
How to instantiate a MEF exported object using Ninject?
My application is using MEF to export some classes from an external assembly. These classes are setup for constructor injection. The issue I am facing is that
MEF is attempting to instantiate the ...
7
votes
1answer
753 views
Extensible WPF application - MEF, MAF or simple loading?
(I know about the other MEF/MAF questions but this is a more specific problem)
I want to create a WPF application that will basically be just a simple add-in host, GUI and settings. All of the actual ...
7
votes
2answers
7k views
MEF Constructor Injection
I'm trying to figure MEF's Constructor Injection attribute. I have no idea how i tell it to load the parameters to the constructor.
This is property i'm trying to load
...
7
votes
1answer
3k views
MEF: Where should I put the CompositionContainer?
I have been using the Windsor IoC Container for my web-based application, to resolve the data access layer implementation the application should use.
The web application's UI will consist of pages, ...
7
votes
1answer
3k views
Using MEF to import a WPF DataTemplate?
I was looking at MEF as an extensibility framework, and I'm pretty much sold, except for one point:
Let's say I want to import both a ViewModel and a View to display it. I think the "right" way to ...
6
votes
1answer
55 views
Utilising methods available in plugin1 in plugin2 via MEF
I have a console based MEF application the host (CompositionContainer) of which loads available plugin assemblies based on the command line parameter, for example:
app.exe plugin1
will load the ...
6
votes
2answers
177 views
Getting a Type Assembly in Windows 8
I'm trying to use MEF in Windows 8.
In order to build up my AssemblyCatalog for the container, I need a reference to the assembly. In the past, I would have just done this:
var catalog = new ...
6
votes
2answers
149 views
How to Plugin Web Pages dynamically in ASP .NET (and update the plugin)?
For regular assemblies one can use MEF to load assemblies dynamically. If a live update is required of those assemblies, the recommendation is to use AppDomains to host the dynamic assemblies ...
6
votes
1answer
522 views
Extending the Visual Studio 2010 editor by adding a context menu item to manipulate selected text
I'd like to create an extension to Visual Studio that will allow someone to select any text in an editor, right-click to get a context menu, and then perform some action on the text by clicking on my ...
6
votes
3answers
345 views
Moving data across the appdomain with good performance?
A little background
I'm working on an .net application that's uses plugins heavily, the application can request data from the plugins that is then sent back and displayed by the application.
First I ...
6
votes
2answers
920 views
MEF: ComposeParts missing
I am trying to follow some starter guides for using MEF in .Net 4, but I get stuck when I get to setting up the application. The instructions say to do this:
var catalog = new ...
6
votes
4answers
667 views
Decoupling the view, presentation and ASP.NET Web Forms
I have an ASP.NET Web Forms page which the presenter needs to populate with controls. This interaction is somewhat sensitive to the page-life cycle and I was wondering if there's a trick to it, that I ...