blob: e2aa3e2bcb3273d44da7d6d1ee348c6803a8ba6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!-- 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 A2 in test $(var.TestGroupName)" DisplayName="$(var.TestGroupName) - Patch A2" Manufacturer="Example Corporation" MinorUpdateTargetRTM="yes">
<Media Id="100" Cabinet="PatchA2" EmbedCab="yes">
<PatchBaseline
Id="PatchA2"
BaselineFile="$(var.PackageAv1.TargetDir)$(var.PackageAv1.TargetName).wixpdb"
UpdateFile="$(var.PackageAv1_0_1.TargetDir)$(var.PackageAv1_0_1.TargetName).wixpdb"
/>
</Media>
<PatchFamily Id="A2" Version="$(var.Version)" Supersede="yes">
<SoftwareTagRef Regid="regid.1995-08.com.example" />
<ComponentRef Id="RegistryComponent2"/>
</PatchFamily>
</Patch>
</Wix>
|