aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/ModuleComponents.wxs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-19 12:10:05 -0700
committerRob Mensching <rob@firegiant.com>2021-03-19 12:15:11 -0700
commit3d5c85c88fc7440b0e232173a18f80f3363c039a (patch)
tree31a53fe22a7ac66272c9517f4ae194e51d471e6b /src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/ModuleComponents.wxs
parentb441a16555d8a720b89028bc4cf3684e58864115 (diff)
downloadwix-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/ModuleComponents.wxs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/ModuleComponents.wxs b/src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/ModuleComponents.wxs
new file mode 100644
index 00000000..236d9df0
--- /dev/null
+++ b/src/test/WixToolsetTest.Util/TestData/RemoveFolderEx/ModuleComponents.wxs
@@ -0,0 +1,10 @@
1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
2 <Fragment>
3 <ComponentGroup Id="ModuleComponents" Directory="INSTALLFOLDER">
4 <Component>
5 <File Source="ModuleComponents.wxs" />
6 <util:RemoveFolderEx On="both" Property="RemoveProp" />
7 </Component>
8 </ComponentGroup>
9 </Fragment>
10</Wix>