在windows安装程序XML中使用Bootstrapper制作单个Bundle项目



我做了一个outlook插件项目。然后我使用WIX为这个外接程序创建一个安装文件。但是我们也需要解决依赖关系,所以我用wix做了一个bootstrapper项目,它首先检查依赖关系,然后使用安装文件安装外接程序。效果很好。 是否有任何方法将这两个设置项目合并为单个项目。?这是我的bootstrapper的代码。

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"
     xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
    <Bundle Name="OutlookReport" Version="1.0.0.0" Manufacturer="Tzunami" UpgradeCode="93597211-ba8c-44f0-9f73-18e7afc47d85">
    <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" >
      <bal:WixStandardBootstrapperApplication LicenseFile="Resource\EULA.rtf" LogoFile="Resource\TzunamiLogo.png"
                                              SuppressOptionsUI="yes"/>
    </BootstrapperApplicationRef>
    <util:ComponentSearch Id="SearchOutlook2010" Guid="CFF13DD8-6EF2-49EB-B265-E3BFC6501C1D" Variable="Outlook2010"/>
    <util:ComponentSearch Id="SearchOutlook2010PIA" Guid="1D844339-3DAE-413E-BC13-62D6A52816B2" Variable="Outlook2010PIA"/>
    <util:ComponentSearch Id="SearchOutlook2013" Guid="F9F828D5-9F0B-46F9-9E3E-9C59F3C5E136" Variable="Outlook2013"/>
    <bal:Condition Message="This Setup need Outlook 2010 or 2013 to be installed">
      Outlook2010 OR Outlook2010PIA OR Outlook2013
    </bal:Condition>
    <util:RegistrySearch Id="VSTORuntimeTest" Root="HKLM" Key="SOFTWAREMicrosoftVSTO Runtime Setupv4R" Value="VSTORFeature_CLR40" Variable="VSTORFeature"/>
    <util:RegistrySearch Id="VSTORuntimeVersionV4R" Root="HKLM" Key="SOFTWAREMicrosoftVSTO Runtime Setupv4R" Value="Version" Variable="VSTORVersionV4R"/>
    <util:RegistrySearch Id="VSTORuntimeVersionV4" Root="HKLM" Key="SOFTWAREMicrosoftVSTO Runtime Setupv4R" Value="Version" Variable="VSTORVersionV4"/>
    <Chain>
      <PackageGroupRef Id="NetFx40Web"/>
      <ExePackage Id="Downloading_Microsoft_VSTORuntime" SourceFile="Resource\vstor_redist.exe" Permanent="yes" Vital="yes" Cache="no" Compressed="no"
                  DownloadUrl="http://go.microsoft.com/fwlink/?LinkId=158917"
                  PerMachine="yes"
                  InstallCommand="/q /norestart"
                  DetectCondition="VSTORFeature"
                  InstallCondition="NOT VSTORFeature OR NOT (VSTORVersionV4R >=v10.0.40303) OR NOT (VSTORVersionV4 >=v10.0.21022)" />
      <MsiPackage SourceFile="$(var.SetupOutlookReports.TargetPath)" Vital="yes" Compressed="yes" Id="OutlookReports" />
    </Chain>
    </Bundle>
</Wix>

可以将一个引导程序链接到另一个引导程序中。只要在你的expackage中将Compressed="no"修改为Compressed="yes",这将嵌入到当前项目中。

最新更新