2012-07-27 4 views
5

Ich habe Setup.Bootstrapper Project, um eine Setup.exe und das Setup-Projekt auszugeben, um die Ausgabe setup.msi zu geben. Aber das Problem ist, warum meine setup.exe die ARPCOMMENTS nicht zeigt und auch die Banner.bmp-Datei beim Ausführen von Setup nicht zeigt. Auf der anderen Seite funktioniert Setup.msi gut.Warum Setup.exe zeigt nicht die ARPCOMMENTS & WIXUIBanner.bmp aber die Setup.msi zeigt dieses Zeug?

Der Code Bundle, das ich für Setup.Bootstrapper (Bundle.wxs) verwende ist:

<?xml version="1.0" encoding="UTF-8"?> 
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"> 
    <Bundle Name="ABC" Version="3.0.0.0" Manufacturer="XYZ, Inc." UpgradeCode="1EB9EC76-9E5F-4471-B522-314A62518A80"> 
     <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense"> 
     <bal:WixStandardBootstrapperApplication LicenseFile="License.rtf" SuppressOptionsUI="yes" /> 
     </BootstrapperApplicationRef> 
     <Chain> 
     <PackageGroupRef Id="NetFx40ClientWeb" /> 
     <MsiPackage Compressed="yes" SourceFile="Setup.msi" Vital="yes" /> 
     </Chain> 
     </Bundle> 
    </Wix> 

Und das Setup-Projekt die Banner.bmp & ARP Status verwendet, ist:

<UIRef Id="WixUI_InstallDir" /> 
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" /> 
<WixVariable Id="WixUILicenseRtf" Value="License.rtf" /> 
<WixVariable Id="WixUIBannerBmp" Value="Bitmaps/Banner.bmp" /> 
<Property Id="ARPPRODUCTICON" Value="ABC.exe" /> 
<Property Id="ARPCONTACT" Value="XYZ, Inc." /> 
<Property Id="ARPURLINFOABOUT" Value="http://www.xyz.com/" /> 
<Property Id="ARPCOMMENTS" Value="abc" /> 

irgendeine Idee?

Antwort

2

Bündel verwenden diese nicht. Sie können Bündeleigenschaften über Attribute im Bundle-Element festlegen. Sie können WixStandardBootstrapperApplication-Eigenschaften mit den Attributen bal: WixStandardBootstrapperApplication festlegen. Nicht alle sind in Bündeln und Paketen verfügbar.

Verwandte Themen