无法从Managed Bootstrapper Application C#-Code中读取Bootstrapper变量的输入

时间:2014-09-24 08:38:19

标签: c# wix

我已使用托管引导程序应用程序编程设置。 在我的解决方案中有以下项目: - Setup.msi:要安装的MSI项目 - Setup.UI.dll:安装过程的WPF-GUI - Bootstrapper.exe:bootstrapper项目 - Launcher.exe:启动引导程序的WPF应用程序

在bootstrapper bundle中,我为安装文件夹定义了一个变量:

<Variable Name="INSTALLFOLDER"
          bal:Overridable="yes"
          Type="string"
          Value="[ProgramFilesFolder]"/>

启动引导程序时,Launcher可以设置此变量:

    Process proc = new Process();
    proc.StartInfo.FileName = "msiexec";
    proc.StartInfo.FileName = "..\\..\\..\\Bootstrapper\\bin\\Debug\\Bootstrapper.exe";
    proc.StartInfo.Arguments = "IsClientSetup=true INSTALLFOLDER=C:\\TestSetup";
    proc.Start();

如果我使用标准引导程序(WixStandardBootstrapperApplication.RtfLicense),我的给定条目将用于定义的变量INSTALLFOLDER。 我在安装过程中只看到了bootstrapper对话框,但毕竟很好。

但是当我使用托管引导程序,它启动我的WPF-GUI,并尝试读取安装路径时,我总是从定义中得到默认值:programfiles文件夹。

这里是捆绑代码:

<WixVariable Id="WixMbaPrereqPackageId"
             Value="Netfx4Full" />
<WixVariable Id="WixMbaPrereqLicenseUrl"
             Value="NetfxLicense.rtf" />
<BootstrapperApplicationRef Id="ManagedBootstrapperApplicationHost" >
    <Payload Name='BootstrapperCore.config' SourceFile='..\..\..\Setup.UI\bin\Debug\BootstrapperCore.config' />
    <Payload SourceFile='..\..\..\Setup.UI\bin\Debug\SetupUI.dll' />
</BootstrapperApplicationRef>

<Chain>
    <MsiPackage Id="SetupPackage"
                SourceFile="..\..\..\Setup.Msi\bin\Debug\Setup.msi"
                Cache="yes"
                DisplayInternalUI="no"
                Vital="yes"
                Compressed="no"
                EnableFeatureSelection="no"
                DisplayName="SetupForTest">
        <MsiProperty Name="INSTALLLOCATION"
                     Value="[INSTALLFOLDER]" />
</Chain>

来自SetupUI中ViewModel的代码:

string installationPath = UI.Model.Bootstrapper.Engine.FormatString(UI.Model.Bootstrapper.Engine.StringVariables["INSTALLFOLDER"]);

并且 - 至少 - SetupUI中的Run方法:

protected override void Run()
{
    MessageBox.Show("1 = " + this.Engine.FormatString(this.Engine.StringVariables["INSTALLFOLDER"]));
    Model = new Model(this);
    Model.Bootstrapper.Engine.Detect();
    MessageBox.Show("2 = " + Model.Bootstrapper.Engine.FormatString(Model.Bootstrapper.Engine.StringVariables["INSTALLFOLDER"]));

    RootViewViewModel viewModel = new RootViewViewModel();
    View = new RootView(viewModel);

    // Populate the view models with data then run the view..
    viewModel.Refresh();
    View.Run();

    this.Engine.Quit(0);
}

有人可以告诉我,我做错了吗?

1 个答案:

答案 0 :(得分:0)

我自己找到了! 代码是正确的,但是当使用管理的引导程序时,变量不会被覆盖。 因此,我们必须从BootstrapperApplication的CommandLineArguments中在SetupUI中读取它们,并将它们设置在变量中。 就是这样。