blob: f700f35c604f8df0187b663b60afccda99b898f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!-- 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 Version?>
<?define Version = 1.0.0.0?>
<?endif?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Patch AllowRemoval="yes" Classification="Update" Description="Patch AB in test $(var.TestGroupName)" DisplayName="$(var.TestGroupName) - Patch AB" Manufacturer="Example Corporation" MinorUpdateTargetRTM="yes">
<Media Id="100" Cabinet="PatchAB" EmbedCab="yes">
<PatchBaseline
Id="PatchA"
BaselineFile="$(var.PackageAv1.TargetDir)$(var.PackageAv1.TargetName).wixpdb"
UpdateFile="$(var.PackageAv1_0_1.TargetDir)$(var.PackageAv1_0_1.TargetName).wixpdb"
/>
<PatchBaseline
Id="PatchB"
BaselineFile="$(var.PackageBv1.TargetDir)$(var.PackageBv1.TargetName).wixpdb"
UpdateFile="$(var.PackageBv1_0_1.TargetDir)$(var.PackageBv1_0_1.TargetName).wixpdb"
/>
</Media>
<PatchFamily Id="AB" Version="$(var.Version)" Supersede="yes">
<ComponentRef Id="RegistryComponent" />
<PropertyRef Id="TestVersion" />
</PatchFamily>
</Patch>
</Wix>
|