aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Patch.wxs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-02 11:26:55 -0800
committerRob Mensching <rob@firegiant.com>2021-03-03 12:03:35 -0800
commite362f93f9fa9ed4b174333d44fcda25790bc85e0 (patch)
treeeaedb4854b97b3333bbdb9102416a699a0175209 /src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Patch.wxs
parenta13f13130b84845fed54f812e2ad33136c7649cb (diff)
downloadwix-e362f93f9fa9ed4b174333d44fcda25790bc85e0.tar.gz
wix-e362f93f9fa9ed4b174333d44fcda25790bc85e0.tar.bz2
wix-e362f93f9fa9ed4b174333d44fcda25790bc85e0.zip
Add test to verify patches without files work
Resolves wixtoolset/issues#4912
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Patch.wxs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Patch.wxs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Patch.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Patch.wxs
new file mode 100644
index 00000000..889b1220
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Patch.wxs
@@ -0,0 +1,16 @@
1<Wix xmlns='http://wixtoolset.org/schemas/v4/wxs'>
2 <Patch
3 AllowRemoval="yes"
4 DisplayName="~Test Patch v$(V)"
5 Description="~Test Small Update Patch v$(V)"
6 MoreInfoURL="http://www.example.com/"
7 Manufacturer="Example Corporation"
8 Classification="Update">
9
10 <Media Id="1" Cabinet="foo.cab">
11 <PatchBaseline Id="RTM" BaselineFile="Baseline.wixpdb" UpdateFile="Update.wixpdb" />
12 </Media>
13
14 <PatchFamily Id='SequenceFamily' Version='$(V)' />
15 </Patch>
16</Wix>