diff options
| author | Bob Arnson <bob@firegiant.com> | 2021-04-12 15:13:08 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2021-04-12 15:22:15 -0400 |
| commit | 3f4bd928ab4c048792bf4c5c10004a1f22e8aa19 (patch) | |
| tree | a884ad428b3db891adefb3111dc8819e90c83855 /src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs | |
| parent | d77302d94b356a1db2b2b834e45c8962381eae6b (diff) | |
| download | wix-3f4bd928ab4c048792bf4c5c10004a1f22e8aa19.tar.gz wix-3f4bd928ab4c048792bf4c5c10004a1f22e8aa19.tar.bz2 wix-3f4bd928ab4c048792bf4c5c10004a1f22e8aa19.zip | |
Fix decompilation of directories as children TARGETDIR.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs index 9a523162..8317e7af 100644 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs | |||
| @@ -1,13 +1,17 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Module Id="MergeModule1" Language="1033" Version="1.0.0.0" Guid="243FB739-4D05-472F-9CFB-EF6B1017B6DE" InstallerVersion="200"> | 2 | <Module Id="MergeModule1" Language="1033" Version="1.0.0.0" Guid="243FB739-4D05-472F-9CFB-EF6B1017B6DE" InstallerVersion="200"> |
| 3 | <SummaryInformation Manufacturer="!(loc.Manufacturer)" /> | 3 | <SummaryInformation Manufacturer="!(loc.Manufacturer)" /> |
| 4 | 4 | ||
| 5 | <Directory Id="MergeRedirectFolder"> | 5 | <Directory Id="MergeRedirectFolder"> |
| 6 | <Component Id="ModuleComponent1" Guid="A04E61B2-3ED4-4803-B2EB-4B773576FA45"> | ||
| 7 | <File Id="File1" Source="test.txt" /> | ||
| 8 | </Component> | ||
| 9 | </Directory> | ||
| 6 | 10 | ||
| 7 | <Component Id="ModuleComponent" Guid="A04E61B2-3ED4-4803-B2EB-4B773576FA45"> | 11 | <Directory Id="NotTheMergeRedirectFolder"> |
| 8 | <File Source="test.txt" /> | 12 | <Component Id="ModuleComponent2" Guid="EADB3047-BD32-417B-AABF-B8D9CCDC22DA"> |
| 9 | </Component> | 13 | <File Id="File2" Source="test.txt" /> |
| 10 | 14 | </Component> | |
| 11 | </Directory> | 15 | </Directory> |
| 12 | </Module> | 16 | </Module> |
| 13 | </Wix> | 17 | </Wix> |
