我有一个eula.html和一个eula.pdf,我想将它们都添加到我的引导程序中。我添加了其中一个,但是如何添加第二个。
这是我的bundle.wxs
<BootstrapperApplicationRef Id="WixExtendedBootstrapperApplication.HyperlinkLicense">
<bal:WixExtendedBootstrapperApplication LicenseFile="Resources\EULA.pdf"
/>
<Payload SourceFile="Resources\Eula.pdf" />
<Payload Name="1033\thm.wxl" Compressed="yes" SourceFile="1033\thm.wxl" />
<Payload SourceFile="Resources\Logo.png"/>
<Payload SourceFile="Resources\LogoSide.png"/>
<Payload SourceFile="Resources\Eula.html" />
</BootstrapperApplicationRef>
<WixVariable Id="WixExtbaLogo" Value="Resources\Logo.png" />
<Variable Name="RadioClient" Type="numeric" Value="0" />
<Variable Name="RadioServer" Type="numeric" Value="0" />
<Variable Name="RadioFull" Type="numeric" Value="1" />
这是我的主题文件。
<Page Name="Install">
<Hypertext Name="EulaHyperlink" X="11" Y="80" Width="200" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallLicenseLinkText)</Hypertext>
<Checkbox Name="EulaAcceptCheckbox" X="-11" Y="-41" Width="260" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallAcceptCheckbox)</Checkbox>
<Button Name="OptionsButton" Visible="no" X="-171" Y="-11" Width="75" Height="23" TabStop="yes" FontId="0" HideWhenDisabled="yes">#(loc.InstallOptionsButton)</Button>
<Button Name="InstallButton" X="-91" Y="-11" Width="75" Height="23" TabStop="yes" FontId="0">#(loc.InstallInstallButton)</Button>
<Button Name="WelcomeCancelButton" X="-11" Y="-11" Width="75" Height="23" TabStop="yes" FontId="0">#(loc.InstallCloseButton)</Button>