diff options
Diffstat (limited to 'src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs')
-rw-r--r-- | src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs b/src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs new file mode 100644 index 00000000..ea46c5b2 --- /dev/null +++ b/src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs | |||
@@ -0,0 +1,26 @@ | |||
1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
2 | |||
3 | |||
4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <Fragment> | ||
6 | <PackageGroup Id="BundlePackages"> | ||
7 | <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" /> | ||
8 | </PackageGroup> | ||
9 | |||
10 | <!-- Reenable when fixed | ||
11 | <Container Id="PackagesContainer" Name="packages.cab" DownloadUrl="$(var.WebServerBaseUrl)BundleA/{2}"> | ||
12 | --> | ||
13 | <Container Id="PackagesContainer" Name="packages.cab" DownloadUrl="$(var.WebServerBaseUrl)BundleA/packages.cab"> | ||
14 | <PackageGroupRef Id="BundlePackages" /> | ||
15 | </Container> | ||
16 | </Fragment> | ||
17 | |||
18 | <Fragment> | ||
19 | <PayloadGroup Id="LayoutOnlyPayloads"> | ||
20 | <Payload Id="LayoutOnlyPayload" SourceFile="$(sys.SOURCEFILEPATH)" Compressed="no" DownloadUrl="$(var.WebServerBaseUrl)BundleA/LayoutOnlyPayload" /> | ||
21 | <!-- Reenable when fixed | ||
22 | <Payload Id="LayoutOnlyPayload" SourceFile="$(sys.SOURCEFILEPATH)" Compressed="no" DownloadUrl="$(var.WebServerBaseUrl)BundleA/{1}" /> | ||
23 | --> | ||
24 | </PayloadGroup> | ||
25 | </Fragment> | ||
26 | </Wix> | ||