aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/Components/PackageComponents.wxs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-02-06 22:04:55 -0500
committerBob Arnson <bob@firegiant.com>2020-02-07 22:00:52 -0500
commit57559c253fe8ec6f9c66662d11fbcabccc3ba057 (patch)
tree60c7b4da6bbb6fe0090498e60fdfbcb769a1af0b /src/test/WixToolsetTest.CoreIntegration/TestData/Components/PackageComponents.wxs
parent9feb0090d2cdd0979bea90ba9aa13dc541f47054 (diff)
downloadwix-57559c253fe8ec6f9c66662d11fbcabccc3ba057.tar.gz
wix-57559c253fe8ec6f9c66662d11fbcabccc3ba057.tar.bz2
wix-57559c253fe8ec6f9c66662d11fbcabccc3ba057.zip
Add CreateFolder tuples for null-keypath components in the backend instead of the compiler.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/Components/PackageComponents.wxs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/Components/PackageComponents.wxs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Components/PackageComponents.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Components/PackageComponents.wxs
new file mode 100644
index 00000000..beaf70bf
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Components/PackageComponents.wxs
@@ -0,0 +1,10 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
5 <Component Id="NullKeypathComponent" Guid="{C493379B-D655-4331-8F03-B618C70EA779}" KeyPath="yes">
6 <File Source="test.txt" />
7 </Component>
8 </ComponentGroup>
9 </Fragment>
10</Wix>