diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-01-24 15:27:20 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-02-05 16:15:47 -0800 |
| commit | 6ff680e386b1543ad1a58d1b1d465ce8aa20bc7d (patch) | |
| tree | c717333cd10d5592e59dfb898b391275bba1f389 /src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs | |
| parent | 6e2e67ab55c75f4655397588c0dcc64f50d22f92 (diff) | |
| download | wix-6ff680e386b1543ad1a58d1b1d465ce8aa20bc7d.tar.gz wix-6ff680e386b1543ad1a58d1b1d465ce8aa20bc7d.tar.bz2 wix-6ff680e386b1543ad1a58d1b1d465ce8aa20bc7d.zip | |
Start on new patch infrastructure
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs new file mode 100644 index 00000000..ee133ba3 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | <Wix xmlns='http://wixtoolset.org/schemas/v4/wxs'> | ||
| 2 | <Product Id='7d326855-e790-4a94-8611-5351f8321fca' Name='~Test Package' | ||
| 3 | Version='$(var.V)' Manufacturer='Example Corporation' Language='1033' | ||
| 4 | UpgradeCode='7d326855-e790-4a94-8611-5351f8321fca'> | ||
| 5 | <Package InstallScope='perMachine' Compressed='yes' /> | ||
| 6 | |||
| 7 | <MajorUpgrade DowngradeErrorMessage='Newer version already installed.' /> | ||
| 8 | <MediaTemplate EmbedCab='yes' /> | ||
| 9 | |||
| 10 | <Directory Id='TARGETDIR' Name='SourceDir'> | ||
| 11 | <Directory Id='ProgramFilesFolder'> | ||
| 12 | <Directory Id='INSTALLFOLDER' Name='~Test App' /> | ||
| 13 | </Directory> | ||
| 14 | </Directory> | ||
| 15 | |||
| 16 | <Feature Id='Main'> | ||
| 17 | <ComponentGroupRef Id='Components' /> | ||
| 18 | </Feature> | ||
| 19 | </Product> | ||
| 20 | |||
| 21 | <Fragment> | ||
| 22 | <ComponentGroup Id="Components" Directory='INSTALLFOLDER'> | ||
| 23 | <Component> | ||
| 24 | <File Id='a.txt' Name='a.txt' Source='Av$(var.A).txt' /> | ||
| 25 | </Component> | ||
| 26 | <Component> | ||
| 27 | <File Id='b.txt' Name='b.txt' Source='Bv$(var.B).txt' /> | ||
| 28 | </Component> | ||
| 29 | </ComponentGroup> | ||
| 30 | </Fragment> | ||
| 31 | </Wix> | ||
