1
vote
3answers
34 views
VS 2010 mouse processor extension - not working
I am experimenting with a Visual Studio 2010 extension, where I need to work with the events exposed by IMouseProcessor.
As far as I can tell from the docs, I should create an IMouseProcessorProvider …
2
votes
1answer
28 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?
2
votes
3answers
53 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 …
1
vote
2answers
47 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 to get the …
2
votes
1answer
37 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 Assembly1)
…
2
votes
3answers
50 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 part of .NET 4 (it …
2
votes
2answers
57 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 component that might be …
1
vote
1answer
80 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. In this case it's …
1
vote
1answer
56 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 framework by the name of …
1
vote
1answer
30 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))]
public class MyClass : …
2
votes
4answers
90 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 display additional …
1
vote
4answers
174 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 …
4
votes
3answers
148 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 help me make an …
0
votes
1answer
33 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, sending messages, …
1
vote
1answer
37 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 things. The host app …
