2

これは、出力setup(.exe)を取得するために使用しているwixBundle.wxsコードです。出力setup.exeはwindows7で正常に動作していますが、windowsXpでメッセージや進行状況を表示しません。何もしません。何か助けはありますか?

<?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="A" Version="4.0.0.0" Manufacturer="ABC, Inc." UpgradeCode="1EB9EC76-9E5F-4471-B522-314A62518A80">
    <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
      <bal:WixStandardBootstrapperApplication LicenseFile="LicenseFilePath" LogoFile="logo.ico" />
    </BootstrapperApplicationRef>
    <Chain>
      <PackageGroupRef Id="NetFx40ClientWeb" />
      <MsiPackage Compressed="yes" SourceFile="sourceMsiPath" Vital="yes" />
     </Chain>
   </Bundle>
</Wix>
4

1 に答える 1

1

WixStandardBootstrapperApplicationは、XPでGDI +を必要とするため、icoファイルをロードできません。

LogoFile="logo.ico" 

に変更します

LogoFile="logo.png" 

そしてそれは動作するはずです。

于 2012-07-23T15:00:01.420 に答える