wix toolset bootstrapper msipackage错误的检测状态

时间:2018-05-30 03:56:19

标签: wix windows-installer burn

我正在通过wix工具集创建vsto安装程序。

Bundle.wxs

<Chain>
  <PackageGroupRef Id="NetFx40Web" />
  <PackageGroupRef Id="PG_VSTORuntime" />
  <MsiPackage Id="SetupMSI"
              SourceFile="$(var.MsiPackageDir)\SetupMSI_MUI_$(var.Platform).msi"                  
              Permanent="no"
              DisplayInternalUI="yes"
              Vital="yes"
              Visible="yes" >
  </MsiPackage>
</Chain>

Unistall Log

Detected package: NetFx40Web, state: Present, cached: None
Detected package: EP_VSTORuntime, state: Present, cached: None
Detected package: SetupMSI_MUI_x86, state: Absent, cached: None

SetupMSI_MUI_x86 状态不正确即使已安装msipackage,也无法显示。

msipackage本身工作正常。

我应该检查什么?

0 个答案:

没有答案