I'm trying to create a very simple path - simply changing the contents of a
html file

I have both old and new msi and wixpdb files

If do an install of the old and then upgrade to the new.msi the old and new
html files are correct in each case so I know my msi files are correct.

I run the following

Torch
Candle
Light
Pyro

When I get to pyro I get a couple of errors:

PYRO1079 - cabinet file does not contain any files
PYRO0227 - transform did not contain any differences

Why is it not detecting the changed file?

This is my patch.wxs

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
  <Patch AllowRemoval="yes"
         Manufacturer="mycompany"
         DisplayName="Session Insight Patch" 
         Description="Test Patch"
         Classification="Hotfix">
    <Media Id="5000" Cabinet="patch.cab">
      <PatchBaseline Id="patch" />
    </Media>
    <PatchFamilyRef Id="SmallPatchFamily"/>
  </Patch>
  <Fragment>
    <PatchFamily Id="SmallPatchFamily" Version="1.0.0.0" Supersede="yes">
      <ComponentRef Id="SIM.en_US.help"/>
    </PatchFamily>
        </Fragment>
</Wix>

In my main wix I have the following fragment

  <Fragment>
    <DirectoryRef Id="en_US">
      <Component Id="SIM.en_US.help"
Guid="C26BB96F-111A-484D-BAE1-18A5FD009DD6" >
        <File Id='en_us.help' Name='help.htm' DiskId='1'
Source='$(env.CIQUAL_Config)\en-us\help.htm' />
        <File Id='en_us.logo_nextplora' Name='logo_nextplora.gif' DiskId='1'
Source='$(env.CIQUAL_Config)\en-us\logo_nextplora.gif' />
      </Component>
    </DirectoryRef>
  </Fragment>




------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to