1

我正在尝试使用 WiX 3.6 创建一个补丁,此示例包含 2 个 C# 项目(可执行文件和库)。但我收到了这个错误:

warning PYRO1079 : The cabinet 'RMT.cab' does not contain any files.  If this patch contains no files, this warning can likely be safely ignored.  Otherwise, try passing -p to torch.exe when first building the transforms, or add a ComponentRef to your PatchFamily authoring to pull changed files into the cabinet.
error PYRO0227 : The transform being built did not contain any differences so it could not be created.

执行的命令:

set w="c:\Program Files (x86)\WiX Toolset v3.6\bin\"

%w%torch.exe -p -xi 1.0.0.0\PatchMe.Installer.wixpdb 1.1.1.1\PatchMe.Installer.wixpdb -out Patch\Diff.wixmst
%w%candle.exe Patch.wxs
%w%light.exe Patch.wixobj -out Patch\Patch.WixMsp
%w%pyro.exe Patch\Patch.WixMsp -out Patch\Patch.msp -t RTM Patch\Diff.wixmst

目录“1.0.0.0”和“1.1.1.1”包含相同项目的两个不同版本的输出(更改了 AssemblyVersion 和一些代码更改)。补丁.wxs 文件:

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  <?include Variables.wxi ?>
  <Patch AllowRemoval="yes"
         Manufacturer="$(var.Manufacturer)"
         DisplayName="$(var.ProductName) $(var.ProductVersion)"
         Description="Small Update Patch"
         Classification="Update"
         TargetProductName="$(var.ProductName)"
         >
       
        <Media Id="5000" Cabinet="RMT.cab">
            <PatchBaseline Id="RTM">
            </PatchBaseline>
        </Media>

        <PatchFamilyRef Id="SamplePatchFamily"/>
    </Patch>

    <Fragment>   
        <PatchFamily Id="SamplePatchFamily" Version="$(var.ProductVersion)" Supersede="yes">
            <ComponentRef Id="cmp981D9885AA29DD578D66D32ED919EBFB"/>
            <ComponentRef Id="cmpD5E6EA59DB565F052E0217CB3248DAE5"/>
        </PatchFamily>
    </Fragment>
</Wix>

ComponentRef Id 是指前面提到的项目的 heat.exe 收获创建的组件片段。

任何想法,可能是什么问题,为什么转换不包含任何更改?

4

1 回答 1

1

我认为这可能是 3.6 中的错误。我尝试了几个小时以使其与版本 3.6.3303.1 一起使用,但我总是收到 PYRO1079 错误。我终于降级到3.5.2519.0版本,错误没有再出现。

降级后,我不得不放弃我的 MediaTemplate 节点和我的 ComponentGroup 节点的 Directory 属性。我不知道这是否是解决方案的一部分(即这可能解决了问题而不是降级)。

于 2012-12-07T16:11:33.200 回答