using System.Windows; namespace Example { /// /// Interaction logic for App.xaml /// public partial class App { protected override void OnStartup(StartupEventArgs e) { var bootstrapper = new Bootstrapper(); bootstrapper.Run(); } } }