2
votes
2answers
42 views
When is MEF shipping?
I'm building a product that will ship after .Net 4.0 is released.
Is MEF an integral part of .Net 4.0, so I can count on them being released together, or is it some external compo …
4
votes
3answers
106 views
MEF vs Mono.AddIn
Hi,
I'm developing a .NET 3.5 C# desktop application. It should be extensible via plug-ins.
Are there any articles etc. discussing the differences between MEF and Mono.AddIn to h …
1
vote
1answer
48 views
System.Security.SecurityException when creating a new FileStream
I have a regular .NET application. In this case I have a part that's being imported by MEF. It imports fine, but at a certain point, I want to save a List of objects to a file. …
1
vote
1answer
37 views
Extensibility via Mono.Addins or MEF
I have some experience with Mono.Addins, the extensibility framework heavily used in the Mono project. I am aware that Microsoft has recently developed their own extensibility fram …
2
votes
4answers
81 views
Customised business rules per customer…(asp.net mvc)
In a web application i'm working on, items can pass through multiple states (eg. workflow) and after each workflow a rule can be run after each step which can stop the process or d …
1
vote
3answers
106 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 Sh …
1
vote
1answer
21 views
Does MEF Support Customized CTOR?
It looks like that MEF framework creates objects which have default CTOR. How about customized CTOR, or Constructor with parameters? For example:
[Export (typeof(IInterface1))]
pu …
0
votes
2answers
52 views
Merging Resource Dictionaries dynamically at runtime (for plugins)
I am using the Managed Extensibility Framework for a WPF application. I've defined interfaces for so-called extension points which provide new features to the application.
Some of …
5
votes
3answers
197 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 …
0
votes
1answer
24 views
Windows Service Container
For my projects I need quite often to create windows services.
I need them for scheduling operations, file system watching, asynchronous or long running side tasks (backup files …
2
votes
2answers
102 views
Should MEF be used in a production application
Hi,
I currently need to provide a means of adding extensibility in my application. I'm currently looking at MEF and MAF.
MEF provides a simpler programming model, and also fits …
1
vote
1answer
34 views
Expose version of MEF loaded “plugin”
Hi all
apologies for the title, I got stuck for words
I'm dipping my toes in the MEF pond. So far, so good. I've got a host app and a couple of "plugin" assemblies that export th …
1
vote
1answer
54 views
How does one import multiple plugin/parts using MEF?
I'm new to MEF and am trying to use it to build a plug-in system, but am stuck at step one.
I'm following an article by Andrew Whitechapel. I've downloaded his sample code an it r …
2
votes
3answers
218 views
MEF: a replacement for PRISM?
To what extent, if any, is MEF a replacement for PRISM?
1
vote
1answer
93 views
How should I create plugins with multiple instances in C#?
My ultimate goal is to load controls as plugins, for use as DocumentContent in AvalonDock. As a result, I will need to be able to create multiple instances of these controls, and I …
