I\'m using mef to create WCF web services. This is how service looks: [Export] [ServiceContract] [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
First here is my error: The type or namespace name \'Web\' could not be found (are you missing a using directive or an assembly reference?)
I have a MEF-based application which uses adapters to process files. It uses configuration files to determine which directories to watch and which adapter to use to process each type of file. Plugins
I am using MEF to load my XAP files on the fly based on the user input. When the application starts, Shell validates the user and authentication is done by using Form Authentication. Once it is authen
I am using prism framework in a silverlight app with multiple modules in separate XAPs. I have a resource dictionary defined in myin my shell project. In my modules I can use the resources fine, but
I want to write a visual studio 2010 extension displaying a margin glyph on each class, method, property, field and event definition (tooltip/popup window on click with addition开发者_如何学JAVAal inf
I am using asp.net mvc2 and mef to create pluggable architecture from this article When i deploy my project on real iis (7.0, windows 2008 server) i always got an mef exception at first request from
I am utilizing MEF in my PRISM 4.0 application to load the modules. In order to be sure that they are being downloaded I have made my Shell to import IPartImportsSatisfiedNotification.Then within the
I\'m using MEF to load plugins in my app. Everything works, but I want new parts to be discovered when they are dropped into my app folder. Is this possible? DirectoryCatalog has a Changed event but I
As is answered in this post, I can use this code for getting plugins using catalog/container. var catalog = new AggregateCatalog();