diff options
Diffstat (limited to 'src/wixlib/NetFx461AsPrereq.wxs')
-rw-r--r-- | src/wixlib/NetFx461AsPrereq.wxs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/wixlib/NetFx461AsPrereq.wxs b/src/wixlib/NetFx461AsPrereq.wxs new file mode 100644 index 00000000..d6b24b43 --- /dev/null +++ b/src/wixlib/NetFx461AsPrereq.wxs | |||
@@ -0,0 +1,34 @@ | |||
1 | <?xml version='1.0' encoding='utf-8'?> | ||
2 | <!-- 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. --> | ||
3 | |||
4 | |||
5 | <Wix xmlns='http://wixtoolset.org/schemas/v4/wxs'> | ||
6 | <?define NetFx461EulaLink = http://referencesource.microsoft.com/license.html ?> | ||
7 | <?define NetFx461WebId = NetFx461Web ?> | ||
8 | <Fragment> | ||
9 | <PackageGroup Id="$(var.NetFx461WebId)AsPrereq"> | ||
10 | <PackageGroupRef Id="$(var.NetFx461WebId)" /> | ||
11 | </PackageGroup> | ||
12 | |||
13 | <CustomTable Id='WixMbaPrereqInformation'> | ||
14 | <Row> | ||
15 | <Data Column='PackageId'>$(var.NetFx461WebId)</Data> | ||
16 | <Data Column='LicenseUrl'>$(var.NetFx461EulaLink)</Data> | ||
17 | </Row> | ||
18 | </CustomTable> | ||
19 | </Fragment> | ||
20 | |||
21 | <?define NetFx461RedistId = NetFx461Redist ?> | ||
22 | <Fragment> | ||
23 | <PackageGroup Id="$(var.NetFx461RedistId)AsPrereq"> | ||
24 | <PackageGroupRef Id="$(var.NetFx461RedistId)" /> | ||
25 | </PackageGroup> | ||
26 | |||
27 | <CustomTable Id='WixMbaPrereqInformation'> | ||
28 | <Row> | ||
29 | <Data Column='PackageId'>$(var.NetFx461RedistId)</Data> | ||
30 | <Data Column='LicenseUrl'>$(var.NetFx461EulaLink)</Data> | ||
31 | </Row> | ||
32 | </CustomTable> | ||
33 | </Fragment> | ||
34 | </Wix> | ||