Reputation: 103
I have been working on a Plugin based application in C#. Stumbled across Managed Extensibility Framework (MEF) but this seems to be obsolete and support is dropped off Prism and other Frameworks.
Are there any alternatives to MEF for .NET Framework? A lot of information around plugins is rather dated and old.
Thanks
Upvotes: 1
Views: 2285
Reputation: 10863
Are there any alternatives to MEF for .NET Framework?
MEF is perfectly fine as plugin framework, no need to look somewhere else.
But you shouldn't also use it as dependency injection container (see Dan's answer).
Upvotes: 1
Reputation: 5799
MEF is NOT a Dependency Injection Container and for that reason it has been removed. So where to look?
Upvotes: 1