aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/OtherComponents.wxs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-01-01 00:26:30 -0800
committerRob Mensching <rob@robmensching.com>2019-01-01 09:58:27 -0800
commit41622a07f82c57cf3d80393b0b6914f5ccb76e33 (patch)
tree8b42a4903f4a98161b44049dd7f73721de6011b0 /src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/OtherComponents.wxs
parente8cb78045d7d03b5014e1e6d781b71165db9b17d (diff)
downloadwix-41622a07f82c57cf3d80393b0b6914f5ccb76e33.tar.gz
wix-41622a07f82c57cf3d80393b0b6914f5ccb76e33.tar.bz2
wix-41622a07f82c57cf3d80393b0b6914f5ccb76e33.zip
Load .wixlib intermediates with single creator
Using a single creator ensures definitions are shared and consistent across the entire build.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/OtherComponents.wxs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/OtherComponents.wxs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/OtherComponents.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/OtherComponents.wxs
new file mode 100644
index 00000000..15a9a0ce
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/OtherComponents.wxs
@@ -0,0 +1,12 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
3 xmlns:ex="http://www.example.com/scheams/v1/wxs">
4 <Fragment>
5 <ComponentGroup Id="OtherComponents" Directory="INSTALLFOLDER">
6 <Component>
7 <File Source="other.txt" />
8 <ex:Example Id="Other" Value="Value" />
9 </Component>
10 </ComponentGroup>
11 </Fragment>
12</Wix>