Yasser Amer
Yasser Amer

Reputation: 111

Multiple Plugins in single DLL MEF

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

Answers (1)

Matthew Abbott
Matthew Abbott

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

Related Questions