aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Patch.wxs
blob: 52e87f644d441fefb501eb172ee5dbff0dde73b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Wix xmlns='http://wixtoolset.org/schemas/v4/wxs'>
    <Patch
    AllowRemoval="yes"
    DisplayName="~Test Patch v$(var.V)"
    Description="~Test Small Update Patch v$(var.V)"
    MoreInfoURL="http://www.example.com/"
    Manufacturer="Example Corporation"
    Classification="Update">

    <Media Id="1" Cabinet="foo.cab">
      <PatchBaseline Id="RTM" BaselineFile="Baseline.wixpdb" UpdateFile="Update.wixpdb" />
    </Media>

    <PatchFamily Id='SequenceFamily' Version='$(var.V)' />
  </Patch>
</Wix>