I play with Caliburn. I have a little problem. I like to have one project for the starter application containing boot files, configuration files, etc. The user interface of the application is then organized in its own project. This works fine with Prism, but it seems to me that the caliber is not like if the user interface and the boot block are separate. Is this right or am I missing something?
edit: I refer to the bootloader in app.xaml. The bootloader currently looks like this:
public class AppBootstrapper : Bootstrapper<MainViewModel>
{
}
ViewModel is in another project, and when the application starts, the application displays "Cannot find the view for the view model ...". This does not happen if ViewModel and View are in the same project as bootstrapper.
source
share