我正在使用Wix 3.8来构建我的安装程序文件。对于我的boostrapper包,我想用ManagedBootstrapperApplicationHost构建我自己的gui。我在Custom WiX Managed Bootstrapper Application
找到了一个例子此应用程序正在使用MvvM Light。我怎样才能使用Caliburn Micro和Mef?我试图建立标准的mef bootstrapper并致电:
new AppBootstrapper();
在我重写的Run方法中。但是我在这里得到一个NullReference异常。如何从代码中手动调用Caliburn Micro Bootstrapper?
关心马库斯