aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNonSpecific/PatchA
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-01-27 20:06:23 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-01-27 20:45:17 -0600
commit9a6688a8d6ec05817451dc8706a0bc9db82b9d36 (patch)
treec3b8347c32a4b6986ace5da37866e3c47d175662 /src/test/WixToolsetTest.CoreIntegration/TestData/PatchNonSpecific/PatchA
parent8eed3c02afb5883bc4e3bb45ab1f9b6da5a65476 (diff)
downloadwix-9a6688a8d6ec05817451dc8706a0bc9db82b9d36.tar.gz
wix-9a6688a8d6ec05817451dc8706a0bc9db82b9d36.tar.bz2
wix-9a6688a8d6ec05817451dc8706a0bc9db82b9d36.zip
Add patch test from old repo and get it passing.
Fixes #6341.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/PatchNonSpecific/PatchA')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/PatchNonSpecific/PatchA/Patch.wxs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNonSpecific/PatchA/Patch.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNonSpecific/PatchA/Patch.wxs
new file mode 100644
index 00000000..1b01774c
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNonSpecific/PatchA/Patch.wxs
@@ -0,0 +1,12 @@
1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Patch AllowRemoval="yes" Classification="Update" ClientPatchId="PatchA" Description="Patch A" DisplayName="Patch A" Manufacturer="Example Corporation" MinorUpdateTargetRTM="yes">
3 <Media Id="100" Cabinet="A" EmbedCab="yes">
4 <PatchBaseline Id="PatchA" BaselineFile="Baseline.wixpdb" UpdateFile="Update.wixpdb" />
5 </Media>
6
7 <PatchFamily Id="A" Version="$(var.V)" Supersede="yes">
8 <ComponentRef Id="RegistryComponent" />
9 <PropertyRef Id="TestVersion" />
10 </PatchFamily>
11 </Patch>
12</Wix>