Re: [WiX-users] BootstrapperApplication Run

2012-06-14 Thread Neil Sleightholm
or Windows Installer XML toolset. Subject: Re: [WiX-users] BootstrapperApplication Run The WixBA.Run() method calls the Dispatcher.Run(). The dispatcher is the message pump for the UI. Without the message pump, the WPF UI won't do respond (even to redraws ). So, for the WixBA, it needs to run th

Re: [WiX-users] BootstrapperApplication Run

2012-06-14 Thread Rob Mensching
The WixBA.Run() method calls the Dispatcher.Run(). The dispatcher is the message pump for the UI. Without the message pump, the WPF UI won't do respond (even to redraws ). So, for the WixBA, it needs to run this way. If you do not have a UI then you technically can do everything via the callbacks.

[WiX-users] BootstrapperApplication Run

2012-06-11 Thread Neil Sleightholm
I have been following the WixBA as an example of how to write a managed BA. In WixBA.cs the Run method is overridden and when it is called the code doesn't exit this until the install is complete. Is this necessary or can the code return from here and call Engine.Quit() to signal to the engine t