diff options
Diffstat (limited to 'src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wxs')
-rw-r--r-- | src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wxs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wxs b/src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wxs new file mode 100644 index 00000000..e2aa3e2b --- /dev/null +++ b/src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wxs | |||
@@ -0,0 +1,23 @@ | |||
1 | <!-- 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. --> | ||
2 | |||
3 | <?ifndef Version?> | ||
4 | <?define Version = 1.0.0.0?> | ||
5 | <?endif?> | ||
6 | |||
7 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
8 | <Patch AllowRemoval="yes" Classification="Update" Description="Patch A2 in test $(var.TestGroupName)" DisplayName="$(var.TestGroupName) - Patch A2" Manufacturer="Example Corporation" MinorUpdateTargetRTM="yes"> | ||
9 | <Media Id="100" Cabinet="PatchA2" EmbedCab="yes"> | ||
10 | <PatchBaseline | ||
11 | Id="PatchA2" | ||
12 | BaselineFile="$(var.PackageAv1.TargetDir)$(var.PackageAv1.TargetName).wixpdb" | ||
13 | UpdateFile="$(var.PackageAv1_0_1.TargetDir)$(var.PackageAv1_0_1.TargetName).wixpdb" | ||
14 | /> | ||
15 | </Media> | ||
16 | |||
17 | <PatchFamily Id="A2" Version="$(var.Version)" Supersede="yes"> | ||
18 | <SoftwareTagRef Regid="regid.1995-08.com.example" /> | ||
19 | |||
20 | <ComponentRef Id="RegistryComponent2"/> | ||
21 | </PatchFamily> | ||
22 | </Patch> | ||
23 | </Wix> | ||