コード例 #1
0
ファイル: App.xaml.cs プロジェクト: Wdovin/vc-community
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var installer = new TestBootStrapperApp();
            var a = new VirtoCommerce.Bootstrapper.UI.Bootstrapper();
            a.Run();

            //var exitCode = new VirtoCommerce.Bootstrapper.UI.App(new Installer()).Run();
        }
コード例 #2
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var installer = new TestBootStrapperApp();
            var a         = new VirtoCommerce.Bootstrapper.UI.Bootstrapper();

            a.Run();

            //var exitCode = new VirtoCommerce.Bootstrapper.UI.App(new Installer()).Run();
        }
コード例 #3
0
ファイル: App.xaml.cs プロジェクト: Wdovin/vc-community
 protected override void OnStartup(StartupEventArgs e)
 {
     base.OnStartup(e);
     var bootstrapper = new Bootstrapper(_installer);
     bootstrapper.Run();
 }