I'm developing an extensible application with MEF. The application will have many types of plugins to collect and process data in different ways.
I'm thinking about building a versioned online repository for the plugins, that will enable the user to download new versions of the plugins when they become available.
It would be nice if MEF could load different versions of the same plugin simultaneously, though from what i understand this isn't possible (correct me if i'm wrong)
So I've resigned myself to the fact i will need to update the plugin and archive the previous version.
What would be the best strategy for doing this?
Example 1
The Application downloads a new version of a loaded running plugin. I cant place the plugin in the plugin directory as there is already dll with the same name. So i could rename the new plugin with a version Suffix. i cant load the same assembly, so i guess ill have to force a restart. so on restart, it achieves the old plugin and loads the new one.
--- This seems solutions seems a little messy
Example 2
The Application downloads a new version of a loaded running plugin. The plugin is encased in some type of installer. The installer closes the host gracefully and archives the existing plugin. The installer installs new plugin and restarts the host app.
--- this also seems a little messy
if anyone has any correction to my assumptions or incite into a successful strategy to my achieve my goal, id be one happy developer
Thanks
