2
votes
3answers
43 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 enu …
1
vote
1answer
14 views
Books on Unity or MEF
Anyone know if there are any books on Unity or MEF coming out in the next month or two?
1
vote
2answers
36 views
Instruct MEF to use any available assemblies
I am trying out the Managed Extensibility Framework for the first time in Visual Studio 2010 beta 2 using the System.ComponentModel.Composition from .net-4.0.
I have been unable t …
2
votes
3answers
45 views
Basic MEF workflow/usage
I'm looking to a framework which will allow me to have a simple plugin system in my .NET application. It seems MEF is the framework which Microsoft is endorsing, and will become pa …
2
votes
1answer
36 views
How-To Prevent Module Duplicates with MEF ?
Hi,
How can i prevent from MEF to load duplicates Modules in the case of the presence of 2 copies of the same Assembly (maybe by mistake)
Assembly1.dll
Assembly2.dll (copy of As …
2
votes
2answers
52 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
142 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
71 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
52 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 …
1
vote
3answers
144 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 …
2
votes
4answers
89 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 …
0
votes
1answer
30 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 …
1
vote
1answer
25 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 …
3
votes
3answers
120 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 …
6
votes
3answers
238 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 …
