我正在尝试为 WiX 中的 .net 应用程序创建一个简单的安装程序。我安装了 Votive 并使用它创建的基本模板 wxs 文件。当我编译它时,我得到 warning LGHT1076: ICE71: The Media table has no entries.
此外,当我运行安装程序时,它会在安装过程中启动和消失,并且“添加/删除程序”应用程序中没有条目。

这是 XML:

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="26d654fe-af0f-4b48-8993-8e249597a130"
       Name="Minefold"
       Language="1033"
       Version="0.0.0.1"
       Manufacturer="Minefold"
       UpgradeCode="6aad5a10-cbbe-472b-87fc-0813fb450836">
    <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />

    <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
    <MediaTemplate />
</Product>

<Fragment>
    <Directory Id="TARGETDIR" Name="SourceDir">
        <Directory Id="ProgramFilesFolder">
            <Directory Id="INSTALLFOLDER" Name="Minefold" />
        </Directory>
    </Directory>
</Fragment>

<Fragment>
    <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
         <Component Id="ProductComponent">
     <File Source="C:\code\Minefold\Minefold\bin\Debug\Minefold.exe" Id="Minefold.exe"  />
         </Component>
    </ComponentGroup>
</Fragment>

<Fragment>
  <Feature Id="Application" Title="Minefold" Level="1">
    <ComponentRef Id="ProductComponent" />
  </Feature>
</Fragment>
</Wix>

最佳答案

将带有 ComponentGroupRef 的功能添加到您的产品中。正如所写,没有任何东西将产品与片段中的内容联系起来。

关于WiX 构建警告 : The Media table has no entries,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8860751/

10-14 16:35