blob: cfeda6c41ca6dc4807655c7d4915a4045c471e72 (
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 Id="{AAAAAAAA-0000-0000-0000-000000000000}" Action="addon" />
<RelatedBundle Id="{BBBBBBBB-0000-0000-0000-000000000000}" Action="patch" />
<RelatedBundle Id="{CCCCCCCC-0000-0000-0000-000000000000}" Action="upgrade" />
<RelatedBundle Id="{DDDDDDDD-0000-0000-0000-000000000000}" Action="detect" />
<RelatedBundle Id="{AAAAAAAA-1111-0000-0000-000000000000}" Action="addon" />
<RelatedBundle Id="{BBBBBBBB-1111-0000-0000-000000000000}" Action="patch" />
<RelatedBundle Id="{CCCCCCCC-1111-0000-0000-000000000000}" Action="upgrade" />
<RelatedBundle Id="{DDDDDDDD-1111-0000-0000-000000000000}" Action="detect" />
<RelatedBundle Id="{AAAAAAAA-2222-0000-0000-000000000000}" Action="addon" />
<RelatedBundle Id="{BBBBBBBB-2222-0000-0000-000000000000}" Action="patch" />
<RelatedBundle Id="{CCCCCCCC-2222-0000-0000-000000000000}" Action="upgrade" />
<RelatedBundle Id="{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>
|