blob: 51d6c5084ed8c36b2b5309561fd18ac5cd2d8606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!-- 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. -->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:fortestinguseonly="http://wixtoolset.org/schemas/v4/wxs/fortestinguseonly">
<Fragment>
<fortestinguseonly:ForTestingUseOnlyBundle Id="{5E9D5B04-41EA-4196-954C-1F7357C31FB0}" />
<RelatedBundle Code="{AAAAAAAA-0000-0000-0000-000000000000}" Action="addon" />
<RelatedBundle Code="{BBBBBBBB-0000-0000-0000-000000000000}" Action="patch" />
<RelatedBundle Code="{CCCCCCCC-0000-0000-0000-000000000000}" Action="upgrade" />
<RelatedBundle Code="{DDDDDDDD-0000-0000-0000-000000000000}" Action="detect" />
<RelatedBundle Code="{AAAAAAAA-1111-0000-0000-000000000000}" Action="addon" />
<RelatedBundle Code="{BBBBBBBB-1111-0000-0000-000000000000}" Action="patch" />
<RelatedBundle Code="{CCCCCCCC-1111-0000-0000-000000000000}" Action="upgrade" />
<RelatedBundle Code="{DDDDDDDD-1111-0000-0000-000000000000}" Action="detect" />
<RelatedBundle Code="{AAAAAAAA-2222-0000-0000-000000000000}" Action="addon" />
<RelatedBundle Code="{BBBBBBBB-2222-0000-0000-000000000000}" Action="patch" />
<RelatedBundle Code="{CCCCCCCC-2222-0000-0000-000000000000}" Action="upgrade" />
<RelatedBundle Code="{DDDDDDDD-2222-0000-0000-000000000000}" Action="detect" />
<PackageGroup Id="BundlePackages">
<MsiPackage Id="PackageA" SourceFile="$(var.PackageAv1.TargetPath)" />
<MsiPackage Id="PackageB" SourceFile="$(var.PackageB.TargetPath)" />
</PackageGroup>
</Fragment>
</Wix>
|