Reputation: 111
Does MEF allow to host multiple Plugins in single DLL, so that i don't have to create a new class library for every new Plugin ?
Thanks.
Upvotes: 0
Views: 107
Reputation: 61617
You can have as many types in an assembly as you like, but whether or not those plugins would conflict is down to how you namespace and name them, and how they are exported.
Upvotes: 2