diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-10-23 17:32:44 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-10-24 19:44:44 -0400 |
| commit | 8b5505cd13367d48bce4ec8a6018e370ed3755b1 (patch) | |
| tree | 97fb50229aff208bce91b160d11ffeee9b1e783a /src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle | |
| parent | 95188080c8005c01c39bb071459b36f8660bcfcd (diff) | |
| download | wix-8b5505cd13367d48bce4ec8a6018e370ed3755b1.tar.gz wix-8b5505cd13367d48bce4ec8a6018e370ed3755b1.tar.bz2 wix-8b5505cd13367d48bce4ec8a6018e370ed3755b1.zip | |
Reorganize Product/Package to Package/SummaryInformation.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs | 30 |
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> |
