diff options
author | Rob Mensching <rob@firegiant.com> | 2021-03-19 12:10:05 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-03-19 12:15:11 -0700 |
commit | 3d5c85c88fc7440b0e232173a18f80f3363c039a (patch) | |
tree | 31a53fe22a7ac66272c9517f4ae194e51d471e6b /src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/Module.wxs | |
parent | b441a16555d8a720b89028bc4cf3684e58864115 (diff) | |
download | wix-3d5c85c88fc7440b0e232173a18f80f3363c039a.tar.gz wix-3d5c85c88fc7440b0e232173a18f80f3363c039a.tar.bz2 wix-3d5c85c88fc7440b0e232173a18f80f3363c039a.zip |
RemoveFolderEx.Property should be modularized as a Column
The value in the column is the name of a Property not a formatted field
that can contain properties.
Fixes wixtoolset/issues#4449
Diffstat (limited to '')
-rw-r--r-- | src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/Module.wxs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/Module.wxs b/src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/Module.wxs new file mode 100644 index 00000000..39674278 --- /dev/null +++ b/src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/Module.wxs | |||
@@ -0,0 +1,15 @@ | |||
1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> | ||
2 | <Module Language="1033" Version="1.0.0.0" Id="InternetShortcutModule" Guid="047730a5-30fe-4a62-a520-da9381b8226a"> | ||
3 | <SummaryInformation Manufacturer="Example Corporation" /> | ||
4 | |||
5 | <ComponentGroupRef Id="ModuleComponents" /> | ||
6 | </Module> | ||
7 | |||
8 | <Fragment> | ||
9 | <Directory Id="TARGETDIR" Name="SourceDir"> | ||
10 | <Directory Id="ProgramFilesFolder"> | ||
11 | <Directory Id="INSTALLFOLDER" Name="MergeModule" /> | ||
12 | </Directory> | ||
13 | </Directory> | ||
14 | </Fragment> | ||
15 | </Wix> | ||