aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2019-05-14 14:19:34 -0400
committerBob Arnson <bob@firegiant.com>2019-05-14 16:07:39 -0400
commit44fb31d655bc5860d45e3acd4cd0cbfaaf5f12eb (patch)
treec522b10288ceacf89ae3febc692ba92f27a6b2d7 /src/test/WixToolsetTest.CoreIntegration/TestData
parent83b04241472fdc93b0a3a7511479a1182ad5f4c0 (diff)
downloadwix-44fb31d655bc5860d45e3acd4cd0cbfaaf5f12eb.tar.gz
wix-44fb31d655bc5860d45e3acd4cd0cbfaaf5f12eb.tar.bz2
wix-44fb31d655bc5860d45e3acd4cd0cbfaaf5f12eb.zip
Add Component/@Shared and fix UninstallWhenSuperseded
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/SingleFile/PackageComponents.wxs17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SingleFile/PackageComponents.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/SingleFile/PackageComponents.wxs
index e26c4509..b8e9f59c 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/SingleFile/PackageComponents.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SingleFile/PackageComponents.wxs
@@ -1,10 +1,13 @@
1<?xml version="1.0" encoding="utf-8"?> 1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment> 3 <Fragment>
4 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> 4 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
5 <Component> 5 <Component>
6 <File Source="test.txt" /> 6 <File Source="test.txt" />
7 </Component> 7 </Component>
8 </ComponentGroup> 8 <Component Id="Shared.dll" Shared="yes">
9 </Fragment> 9 <File Name="Shared.dll" Source="test.txt" />
10 </Component>
11 </ComponentGroup>
12 </Fragment>
10</Wix> 13</Wix>