diff options
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle')
6 files changed, 51 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Av1.0.0.txt b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Av1.0.0.txt new file mode 100644 index 00000000..6fd385bd --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Av1.0.0.txt | |||
| @@ -0,0 +1 @@ | |||
| This is A v1.0.0 | |||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Av1.0.1.txt b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Av1.0.1.txt new file mode 100644 index 00000000..b1f0bc01 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Av1.0.1.txt | |||
| @@ -0,0 +1 @@ | |||
| This ia A v1.0.1 | |||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Bv1.0.0.txt b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Bv1.0.0.txt new file mode 100644 index 00000000..ece55fec --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Bv1.0.0.txt | |||
| @@ -0,0 +1 @@ | |||
| This is B v1.0.0 | |||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Bv1.0.1.txt b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Bv1.0.1.txt new file mode 100644 index 00000000..cf3372fd --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/.data/Bv1.0.1.txt | |||
| @@ -0,0 +1 @@ | |||
| This ia B v1.0.1 | |||
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> | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Patch.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Patch.wxs new file mode 100644 index 00000000..52e87f64 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Patch.wxs | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | <Wix xmlns='http://wixtoolset.org/schemas/v4/wxs'> | ||
| 2 | <Patch | ||
| 3 | AllowRemoval="yes" | ||
| 4 | DisplayName="~Test Patch v$(var.V)" | ||
| 5 | Description="~Test Small Update Patch v$(var.V)" | ||
| 6 | MoreInfoURL="http://www.example.com/" | ||
| 7 | Manufacturer="Example Corporation" | ||
| 8 | Classification="Update"> | ||
| 9 | |||
| 10 | <Media Id="1" Cabinet="foo.cab"> | ||
| 11 | <PatchBaseline Id="RTM" BaselineFile="Baseline.wixpdb" UpdateFile="Update.wixpdb" /> | ||
| 12 | </Media> | ||
| 13 | |||
| 14 | <PatchFamily Id='SequenceFamily' Version='$(var.V)' /> | ||
| 15 | </Patch> | ||
| 16 | </Wix> | ||
