Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Caliburn.Micro and the Bootstrapper/BootstrapperBase Classes

I thought I would check out Caliburn.Micro. Using the old CodePlex documentation I went to implement my inherited bootstrapper class (inheriting from BootstrapperBase) and there is no BootstrapperBase/Bootstrapper class in the new GitHub version.

I have since re-downloaded the older CodePlex version and I am back in business with the tutorials etc. and the Bootstrapper classes are available.

What is happening in the latest version of Caliburn.Micro and why is there no Bootstrapper classes?


Note, I have seen:

  1. Caliburn.Micro does not have "Bootstrapper" in a namespace in App.xaml

this does not help me.

like image 471
MoonKnight Avatar asked Dec 25 '22 13:12

MoonKnight


1 Answers

From Rob Eisenberg's blog post on 2.0:

  • Remove Bootstrapper and PhoneBootstrapper, use BootstrapperBase and PhoneBootstrapperBase

There's a usage sample here.

like image 163
JC. Avatar answered Dec 29 '22 09:12

JC.