Reputation: 39
I would like to ask about framework (like Prim.MEF) for building modular application which support the Win 10 UWP platform.
Unfortunately, Prism.MEF does not support the Win 10 UWP platform (https://github.com/PrismLibrary/Prism)
Upvotes: 0
Views: 617
Reputation: 1680
Windows apps do not currently support modular development like applications created for the desktop with WPF which support frameworks like MEF where DLLs can just be placed in a way that they can be dynamically loaded by the application.
You could create your application in a way that it has access to all of the "modules" and you restrict them per user if this is an enterprise application or if you're putting it into the store, have them as in-app purchases to unlock (IAP).
Upvotes: 1