diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-03-02 11:26:55 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-03-03 12:03:35 -0800 |
| commit | e362f93f9fa9ed4b174333d44fcda25790bc85e0 (patch) | |
| tree | eaedb4854b97b3333bbdb9102416a699a0175209 /src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Package.wxs | |
| parent | a13f13130b84845fed54f812e2ad33136c7649cb (diff) | |
| download | wix-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/Package.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Package.wxs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Package.wxs new file mode 100644 index 00000000..9d530376 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchNoFileChanges/Package.wxs | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 2 | <Package Name="~Test Package" Version="$(V)" Manufacturer="Example Corporation" Language="1033" UpgradeCode="7d326855-e790-4a94-8611-5351f8321fca" Compressed="yes" Scope="perMachine" ProductCode="7d326855-e790-4a94-8611-5351f8321fca"> | ||
| 3 | |||
| 4 | <MajorUpgrade DowngradeErrorMessage="Newer version already installed." /> | ||
| 5 | <MediaTemplate EmbedCab="yes" /> | ||
| 6 | |||
| 7 | <Directory Id="INSTALLFOLDER" Name="ProgramFilesFolder:\~Test App" /> | ||
| 8 | |||
| 9 | <Feature Id="Main"> | ||
| 10 | <ComponentGroupRef Id="Components" /> | ||
| 11 | </Feature> | ||
| 12 | </Package> | ||
| 13 | |||
| 14 | <Fragment> | ||
| 15 | <ComponentGroup Id="Components" Directory="INSTALLFOLDER"> | ||
| 16 | <Component> | ||
| 17 | <File Id="a.txt" Name="a.txt" Source="A.txt" /> | ||
| 18 | </Component> | ||
| 19 | |||
| 20 | <Component> | ||
| 21 | <RegistryValue Root="HKLM" Key="SOFTWARE\!(bind.property.ProductName)\Patch" Name="Version" Value="$(V)" /> | ||
| 22 | </Component> | ||
| 23 | </ComponentGroup> | ||
| 24 | </Fragment> | ||
| 25 | </Wix> | ||
