aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs30
1 files changed, 14 insertions, 16 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs
index ee133ba3..72424986 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs
@@ -1,30 +1,28 @@
1<Wix xmlns='http://wixtoolset.org/schemas/v4/wxs'> 1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Product Id='7d326855-e790-4a94-8611-5351f8321fca' Name='~Test Package' 2 <Package Name="~Test Package" Version="$(var.V)" Manufacturer="Example Corporation" Language="1033" UpgradeCode="7d326855-e790-4a94-8611-5351f8321fca" Compressed="yes" Scope="perMachine" ProductCode="7d326855-e790-4a94-8611-5351f8321fca">
3 Version='$(var.V)' Manufacturer='Example Corporation' Language='1033' 3
4 UpgradeCode='7d326855-e790-4a94-8611-5351f8321fca'>
5 <Package InstallScope='perMachine' Compressed='yes' />
6 4
7 <MajorUpgrade DowngradeErrorMessage='Newer version already installed.' /> 5 <MajorUpgrade DowngradeErrorMessage="Newer version already installed." />
8 <MediaTemplate EmbedCab='yes' /> 6 <MediaTemplate EmbedCab="yes" />
9 7
10 <Directory Id='TARGETDIR' Name='SourceDir'> 8 <Directory Id="TARGETDIR" Name="SourceDir">
11 <Directory Id='ProgramFilesFolder'> 9 <Directory Id="ProgramFilesFolder">
12 <Directory Id='INSTALLFOLDER' Name='~Test App' /> 10 <Directory Id="INSTALLFOLDER" Name="~Test App" />
13 </Directory> 11 </Directory>
14 </Directory> 12 </Directory>
15 13
16 <Feature Id='Main'> 14 <Feature Id="Main">
17 <ComponentGroupRef Id='Components' /> 15 <ComponentGroupRef Id="Components" />
18 </Feature> 16 </Feature>
19 </Product> 17 </Package>
20 18
21 <Fragment> 19 <Fragment>
22 <ComponentGroup Id="Components" Directory='INSTALLFOLDER'> 20 <ComponentGroup Id="Components" Directory="INSTALLFOLDER">
23 <Component> 21 <Component>
24 <File Id='a.txt' Name='a.txt' Source='Av$(var.A).txt' /> 22 <File Id="a.txt" Name="a.txt" Source="Av$(var.A).txt" />
25 </Component> 23 </Component>
26 <Component> 24 <Component>
27 <File Id='b.txt' Name='b.txt' Source='Bv$(var.B).txt' /> 25 <File Id="b.txt" Name="b.txt" Source="Bv$(var.B).txt" />
28 </Component> 26 </Component>
29 </ComponentGroup> 27 </ComponentGroup>
30 </Fragment> 28 </Fragment>