aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/TestData/DependencyTests/PatchB/PatchB.wxs
blob: 809e12a1cd0ec4d575cf23ba45467c477ee9dffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->

<?ifndef TestVersion?>
<?define TestVersion = 1.0.0.0?>
<?endif?>

<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
    <Patch AllowRemoval="yes" Classification="Update" Description="Patch B in test $(var.TestGroupName)" DisplayName="$(var.TestGroupName) - Patch B" Manufacturer="Example Corporation" MinorUpdateTargetRTM="yes">
        <Media Id="100" Cabinet="PatchB" EmbedCab="yes">
            <PatchBaseline
              Id="PatchB"
              BaselineFile="$(var.PackageAv1.TargetDir)$(var.PackageAv1.TargetName).wixpdb"
              UpdateFile="$(var.PackageAv1_0_2.TargetDir)$(var.PackageAv1_0_2.TargetName).wixpdb"
            />
        </Media>

        <PatchFamily Id="B" Version="$(var.TestVersion)" Supersede="yes">
          <PropertyRef Id="TestVersion"/>
        </PatchFamily>
    </Patch>
</Wix>