diff options
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/Payload/DownloadUrlPlaceholdersBundle.wxs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/DownloadUrlPlaceholdersBundle.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/DownloadUrlPlaceholdersBundle.wxs new file mode 100644 index 00000000..87bb79f9 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/DownloadUrlPlaceholdersBundle.wxs | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 2 | <Bundle Name="DownloadUrlPlaceholders" Version="1.0.0.0" Manufacturer="test" UpgradeCode="{B04C20B8-70C3-4DE1-8D91-4F11C7C68DED}"> | ||
| 3 | <BootstrapperApplicationRef Id="fakeba" /> | ||
| 4 | |||
| 5 | <Chain> | ||
| 6 | <PackageGroupRef Id="ContainerPackages" /> | ||
| 7 | <PackageGroupRef Id="UncompressedPackages" /> | ||
| 8 | </Chain> | ||
| 9 | |||
| 10 | <PayloadGroupRef Id="LayoutOnlyPayloads" /> | ||
| 11 | <Container Id="PackagesContainer" Name="packages.cab" DownloadUrl="http://example.com/{0}id/{1}/{2}"> | ||
| 12 | <PackageGroupRef Id="ContainerPackages" /> | ||
| 13 | </Container> | ||
| 14 | </Bundle> | ||
| 15 | <Fragment> | ||
| 16 | <PackageGroup Id="ContainerPackages"> | ||
| 17 | <ExePackage SourceFile="burn.exe" DetectCondition="none" /> | ||
| 18 | </PackageGroup> | ||
| 19 | </Fragment> | ||
| 20 | <Fragment> | ||
| 21 | <PackageGroup Id="UncompressedPackages"> | ||
| 22 | <MsiPackage SourceFile="test.msi" DownloadUrl="http://example.com/{0}id/{1}/{2}" Compressed="no" /> | ||
| 23 | </PackageGroup> | ||
| 24 | </Fragment> | ||
| 25 | <Fragment> | ||
| 26 | <PayloadGroup Id="LayoutOnlyPayloads"> | ||
| 27 | <Payload Id="LayoutOnlyPayload" SourceFile="$(sys.SOURCEFILEPATH)" DownloadUrl="http://example.com/{0}id/{1}/{2}" Compressed="no" /> | ||
| 28 | </PayloadGroup> | ||
| 29 | </Fragment> | ||
| 30 | </Wix> | ||
