I am using the Managed Extensibility Framework for a WPF application. I've defined interfaces for so-called extension points which provide new features to the application.
Some of these features might be to display data using certain data templates, which is something which you will probably want to specify in a xaml resources file.
If I have one of these extension points (ie plugins in plain language) defined in an assembly which is not known at application compile time, but I still want to merge the plugin's resources with those of the application how would I go about it?
All the examples that shows how to do this using the pack URI notation state that is the solution when the assemblies that you reference are known at compile time. How do you achieve the same thing when you aren't familiar with the assembly at compile-time?