Using the Pure WIX approach, I was able to get a sample patch to work as
documented.   Maybe consider restructuring your patch wxs files to use
Patch/PatchFamily rather than PatchCreation as shown below.

i.e. 
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
  <Patch
      AllowRemoval="yes"
      Manufacturer="Dynamo Corp"
      MoreInfoURL="http://www.dynamocorp.com/";
      DisplayName="PF1 Sample Patch 1.0.0.100"
      Description="PF1 Small Update Patch 1.0.0.100"
      Classification="Update"
        >
    <Media Id="5000" Cabinet="RTM.cab">
      <PatchBaseline Id="RTM"/>
    </Media>
    <PatchFamilyRef Id="PatchFamily1"/>
  </Patch>
  <Fragment>
    <PatchFamily Id='PatchFamily1' Version='1.0.0.100' Supersede='yes'>

      <ComponentRef Id="cmpFile1"/>
      <ComponentRef Id="cmpFile2"/>
      <ComponentRef Id="cmpFile3"/>
      <ComponentRef Id="cmpFile4"/>

      </PatchFamily>
  </Fragment>
</Wix>



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Applying-two-patches-causes-version-number-confusion-tp7595340p7595436.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to