I’m looking for solution on architecting modular application model in WPF. For now I was using Devexpress POCO MVVM for architecting my WPF apps but is lack of modular extensibility and I’m looking something to work well with my current design and allow to build application composed with modules. My expectations are:
- Modules are placed in remote location
- Framework can download latest version when application starts (or demand module)
- Application should load only subset of all modules basing on permissions of currently logged user
- Framework allow integration with GUI – allowing to load list of modules and put graphical representation of module in some part of my application
- Library is live and not closed project
I’m thinking about PRISM but this framework always looked little complex and heavy but maybe it was wrong impression. Another library is MEF but I don’t know if it fits my expectations.
Can I ask of some suggestion for modern library which will be good for my needs?