diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-08 23:03:30 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-09 13:33:18 -0600 |
commit | 70e370b4494a87cbbe234130882cad4a1021f82a (patch) | |
tree | 62966467e371f884bd987d539f840242f9245c61 /src/wixlib | |
parent | c52a40fc649b0aebb673cced64a2773aa2425e2d (diff) | |
download | wix-70e370b4494a87cbbe234130882cad4a1021f82a.tar.gz wix-70e370b4494a87cbbe234130882cad4a1021f82a.tar.bz2 wix-70e370b4494a87cbbe234130882cad4a1021f82a.zip |
Require the custom BA elements to reference built-in BAs.
Diffstat (limited to 'src/wixlib')
-rw-r--r-- | src/wixlib/BalExtension_platform.wxi | 25 | ||||
-rw-r--r-- | src/wixlib/BalExtension_x86.wxs (renamed from src/wixlib/wixstdba_x86.wxs) | 2 | ||||
-rw-r--r-- | src/wixlib/Dnc.wxs | 51 | ||||
-rw-r--r-- | src/wixlib/Mba.wxs | 98 | ||||
-rw-r--r-- | src/wixlib/caDecor.wxi | 39 | ||||
-rw-r--r-- | src/wixlib/caSuffix.wxi | 27 | ||||
-rw-r--r-- | src/wixlib/wixstdba_platform.wxi | 47 |
7 files changed, 101 insertions, 188 deletions
diff --git a/src/wixlib/BalExtension_platform.wxi b/src/wixlib/BalExtension_platform.wxi new file mode 100644 index 00000000..fa7d1182 --- /dev/null +++ b/src/wixlib/BalExtension_platform.wxi | |||
@@ -0,0 +1,25 @@ | |||
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 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?include caDecor.wxi ?> | ||
6 | <Fragment> | ||
7 | <BootstrapperApplication Id="WixDotNetCoreBootstrapperApplicationHost$(var.Suffix)"> | ||
8 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\dnchost.dll" /> | ||
9 | <Payload SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" Name="dncpreq.dll" /> | ||
10 | <PayloadGroupRef Id="WixDotNetCoreBootstrapperApplicationHostManagedPayloads" /> | ||
11 | </BootstrapperApplication> | ||
12 | </Fragment> | ||
13 | <Fragment> | ||
14 | <BootstrapperApplication Id="WixManagedBootstrapperApplicationHost$(var.Suffix)"> | ||
15 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\mbahost.dll" /> | ||
16 | <Payload SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" Name="mbapreq.dll" /> | ||
17 | <PayloadGroupRef Id="WixManagedBootstrapperApplicationHostManagedPayloads" /> | ||
18 | </BootstrapperApplication> | ||
19 | </Fragment> | ||
20 | <Fragment> | ||
21 | <BootstrapperApplication Id="WixStandardBootstrapperApplication$(var.Suffix)"> | ||
22 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> | ||
23 | </BootstrapperApplication> | ||
24 | </Fragment> | ||
25 | </Include> | ||
diff --git a/src/wixlib/wixstdba_x86.wxs b/src/wixlib/BalExtension_x86.wxs index e3ad07e8..3cdd4015 100644 --- a/src/wixlib/wixstdba_x86.wxs +++ b/src/wixlib/BalExtension_x86.wxs | |||
@@ -3,5 +3,5 @@ | |||
3 | 3 | ||
4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
5 | <?define platform=x86 ?> | 5 | <?define platform=x86 ?> |
6 | <?include wixstdba_platform.wxi ?> | 6 | <?include BalExtension_platform.wxi ?> |
7 | </Wix> | 7 | </Wix> |
diff --git a/src/wixlib/Dnc.wxs b/src/wixlib/Dnc.wxs index 9b5dc0ee..d777c473 100644 --- a/src/wixlib/Dnc.wxs +++ b/src/wixlib/Dnc.wxs | |||
@@ -6,54 +6,15 @@ | |||
6 | Dnc.wxs - .NET Core BA resources. | 6 | Dnc.wxs - .NET Core BA resources. |
7 | --> | 7 | --> |
8 | <Fragment> | 8 | <Fragment> |
9 | <BootstrapperApplication Id="DotNetCoreBootstrapperApplicationHost"> | 9 | <PayloadGroup Id="WixDotNetCoreBootstrapperApplicationHostManagedPayloads"> |
10 | <PayloadGroupRef Id="Dnc" /> | 10 | <Payload SourceFile="WixToolset.Dnc.Host.dll" /> |
11 | <PayloadGroupRef Id="DncPreqStandard" /> | ||
12 | <BootstrapperApplicationDll SourceFile="dnchost.dll" /> | ||
13 | </BootstrapperApplication> | ||
14 | </Fragment> | ||
15 | |||
16 | <Fragment> | ||
17 | <BootstrapperApplication Id="DotNetCoreBootstrapperApplicationHost.RtfLicense"> | ||
18 | <PayloadGroupRef Id="Dnc" /> | ||
19 | <PayloadGroupRef Id="DncPreqStandard" /> | ||
20 | <BootstrapperApplicationDll SourceFile="dnchost.dll" /> | ||
21 | </BootstrapperApplication> | ||
22 | </Fragment> | ||
23 | |||
24 | <Fragment> | ||
25 | <BootstrapperApplication Id="DotNetCoreBootstrapperApplicationHost.Minimal"> | ||
26 | <PayloadGroupRef Id="Dnc" /> | ||
27 | <BootstrapperApplicationDll SourceFile="dnchost.dll" /> | ||
28 | </BootstrapperApplication> | ||
29 | </Fragment> | ||
30 | |||
31 | <Fragment> | ||
32 | <BootstrapperApplication Id="DotNetCoreBootstrapperApplicationHost.RtfLicense.Minimal"> | ||
33 | <PayloadGroupRef Id="Dnc" /> | ||
34 | <BootstrapperApplicationDll SourceFile="dnchost.dll" /> | ||
35 | </BootstrapperApplication> | ||
36 | </Fragment> | ||
37 | |||
38 | <Fragment> | ||
39 | <BootstrapperApplication Id="DotNetCoreBootstrapperApplicationHost.Foundation"> | ||
40 | <PayloadGroupRef Id="Dnc" /> | ||
41 | <BootstrapperApplicationDll SourceFile="dnchost.dll" /> | ||
42 | </BootstrapperApplication> | ||
43 | </Fragment> | ||
44 | |||
45 | <Fragment> | ||
46 | <PayloadGroup Id="Dnc"> | ||
47 | <Payload Compressed="yes" SourceFile="WixToolset.Dnc.Host.dll" /> | ||
48 | <Payload Compressed="yes" SourceFile="wixstdba.dll" Name="dncpreq.dll" /> | ||
49 | </PayloadGroup> | 11 | </PayloadGroup> |
50 | </Fragment> | 12 | </Fragment> |
51 | |||
52 | <Fragment> | 13 | <Fragment> |
53 | <PayloadGroup Id="DncPreqStandard"> | 14 | <PayloadGroup Id="DncPreqStandardPayloads"> |
54 | <Payload Name="mbapreq.thm" Compressed="yes" SourceFile="!(wix.DncPreqbaThemeXml=SourceDir\dncpreq.thm)" /> | 15 | <Payload Name="mbapreq.thm" SourceFile="!(wix.DncPreqbaThemeXml=SourceDir\dncpreq.thm)" /> |
55 | <Payload Name="mbapreq.png" Compressed="yes" SourceFile="!(wix.DncPreqbaLogo=SourceDir\mbapreq.png)" /> | 16 | <Payload Name="mbapreq.png" SourceFile="!(wix.DncPreqbaLogo=SourceDir\mbapreq.png)" /> |
56 | <Payload Name="mbapreq.wxl" Compressed="yes" SourceFile="!(wix.DncPreqbaThemeWxl=SourceDir\dncpreq.wxl)" /> | 17 | <Payload Name="mbapreq.wxl" SourceFile="!(wix.DncPreqbaThemeWxl=SourceDir\dncpreq.wxl)" /> |
57 | </PayloadGroup> | 18 | </PayloadGroup> |
58 | </Fragment> | 19 | </Fragment> |
59 | </Wix> | 20 | </Wix> |
diff --git a/src/wixlib/Mba.wxs b/src/wixlib/Mba.wxs index 4667904a..2d407c88 100644 --- a/src/wixlib/Mba.wxs +++ b/src/wixlib/Mba.wxs | |||
@@ -3,79 +3,41 @@ | |||
3 | 3 | ||
4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
5 | <!-- | 5 | <!-- |
6 | Mba.wxs - Managed UX resources. | 6 | Mba.wxs - Managed BA resources. |
7 | --> | 7 | --> |
8 | <Fragment> | 8 | <Fragment> |
9 | <BootstrapperApplication Id="ManagedBootstrapperApplicationHost"> | 9 | <PayloadGroup Id="WixManagedBootstrapperApplicationHostManagedPayloads"> |
10 | <PayloadGroupRef Id="Mba" /> | 10 | <Payload SourceFile="WixToolset.Mba.Host.dll" /> |
11 | <PayloadGroupRef Id="MbaPreqStandard" /> | ||
12 | <BootstrapperApplicationDll SourceFile="mbahost.dll" /> | ||
13 | </BootstrapperApplication> | ||
14 | </Fragment> | ||
15 | <Fragment> | ||
16 | <BootstrapperApplication Id="ManagedBootstrapperApplicationHost.RtfLicense"> | ||
17 | <PayloadGroupRef Id="Mba" /> | ||
18 | <PayloadGroupRef Id="MbaPreqStandard" /> | ||
19 | <BootstrapperApplicationDll SourceFile="mbahost.dll" /> | ||
20 | </BootstrapperApplication> | ||
21 | </Fragment> | ||
22 | |||
23 | <Fragment> | ||
24 | <BootstrapperApplication Id="ManagedBootstrapperApplicationHost.Minimal"> | ||
25 | <PayloadGroupRef Id="Mba" /> | ||
26 | <BootstrapperApplicationDll SourceFile="mbahost.dll" /> | ||
27 | </BootstrapperApplication> | ||
28 | </Fragment> | ||
29 | |||
30 | <Fragment> | ||
31 | <BootstrapperApplication Id="ManagedBootstrapperApplicationHost.RtfLicense.Minimal"> | ||
32 | <PayloadGroupRef Id="Mba" /> | ||
33 | <BootstrapperApplicationDll SourceFile="mbahost.dll" /> | ||
34 | </BootstrapperApplication> | ||
35 | </Fragment> | ||
36 | |||
37 | <Fragment> | ||
38 | <BootstrapperApplication Id="ManagedBootstrapperApplicationHost.Foundation"> | ||
39 | <PayloadGroupRef Id="Mba" /> | ||
40 | <BootstrapperApplicationDll SourceFile="mbahost.dll" /> | ||
41 | </BootstrapperApplication> | ||
42 | </Fragment> | ||
43 | |||
44 | <Fragment> | ||
45 | <PayloadGroup Id="Mba"> | ||
46 | <Payload Compressed="yes" SourceFile="WixToolset.Mba.Host.dll" /> | ||
47 | <Payload Compressed="yes" SourceFile="wixstdba.dll" Name="mbapreq.dll" /> | ||
48 | </PayloadGroup> | 11 | </PayloadGroup> |
49 | </Fragment> | 12 | </Fragment> |
50 | |||
51 | <Fragment> | 13 | <Fragment> |
52 | <PayloadGroup Id="MbaPreqStandard"> | 14 | <PayloadGroup Id="MbaPreqStandardPayloads"> |
53 | <Payload Name="mbapreq.thm" Compressed="yes" SourceFile="!(wix.PreqbaThemeXml=SourceDir\mbapreq.thm)" /> | 15 | <Payload Name="mbapreq.thm" SourceFile="!(wix.PreqbaThemeXml=SourceDir\mbapreq.thm)" /> |
54 | <Payload Name="mbapreq.png" Compressed="yes" SourceFile="!(wix.PreqbaLogo=SourceDir\mbapreq.png)" /> | 16 | <Payload Name="mbapreq.png" SourceFile="!(wix.PreqbaLogo=SourceDir\mbapreq.png)" /> |
55 | <Payload Name="mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl=SourceDir\mbapreq.wxl)" /> | 17 | <Payload Name="mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl=SourceDir\mbapreq.wxl)" /> |
56 | <Payload Name="1028\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1028=SourceDir\1028\mbapreq.wxl)" /> | 18 | <Payload Name="1028\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1028=SourceDir\1028\mbapreq.wxl)" /> |
57 | <Payload Name="1029\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1029=SourceDir\1029\mbapreq.wxl)" /> | 19 | <Payload Name="1029\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1029=SourceDir\1029\mbapreq.wxl)" /> |
58 | <Payload Name="1030\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1030=SourceDir\1030\mbapreq.wxl)" /> | 20 | <Payload Name="1030\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1030=SourceDir\1030\mbapreq.wxl)" /> |
59 | <Payload Name="1031\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1031=SourceDir\1031\mbapreq.wxl)" /> | 21 | <Payload Name="1031\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1031=SourceDir\1031\mbapreq.wxl)" /> |
60 | <Payload Name="1032\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1032=SourceDir\1032\mbapreq.wxl)" /> | 22 | <Payload Name="1032\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1032=SourceDir\1032\mbapreq.wxl)" /> |
61 | <Payload Name="1035\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1035=SourceDir\1035\mbapreq.wxl)" /> | 23 | <Payload Name="1035\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1035=SourceDir\1035\mbapreq.wxl)" /> |
62 | <Payload Name="1036\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1036=SourceDir\1036\mbapreq.wxl)" /> | 24 | <Payload Name="1036\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1036=SourceDir\1036\mbapreq.wxl)" /> |
63 | <Payload Name="1038\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1038=SourceDir\1038\mbapreq.wxl)" /> | 25 | <Payload Name="1038\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1038=SourceDir\1038\mbapreq.wxl)" /> |
64 | <Payload Name="1040\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1040=SourceDir\1040\mbapreq.wxl)" /> | 26 | <Payload Name="1040\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1040=SourceDir\1040\mbapreq.wxl)" /> |
65 | <Payload Name="1041\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1041=SourceDir\1041\mbapreq.wxl)" /> | 27 | <Payload Name="1041\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1041=SourceDir\1041\mbapreq.wxl)" /> |
66 | <Payload Name="1042\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1042=SourceDir\1042\mbapreq.wxl)" /> | 28 | <Payload Name="1042\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1042=SourceDir\1042\mbapreq.wxl)" /> |
67 | <Payload Name="1043\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1043=SourceDir\1043\mbapreq.wxl)" /> | 29 | <Payload Name="1043\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1043=SourceDir\1043\mbapreq.wxl)" /> |
68 | <Payload Name="1044\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1044=SourceDir\1044\mbapreq.wxl)" /> | 30 | <Payload Name="1044\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1044=SourceDir\1044\mbapreq.wxl)" /> |
69 | <Payload Name="1045\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1045=SourceDir\1045\mbapreq.wxl)" /> | 31 | <Payload Name="1045\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1045=SourceDir\1045\mbapreq.wxl)" /> |
70 | <Payload Name="1046\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1046=SourceDir\1046\mbapreq.wxl)" /> | 32 | <Payload Name="1046\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1046=SourceDir\1046\mbapreq.wxl)" /> |
71 | <Payload Name="1049\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1049=SourceDir\1049\mbapreq.wxl)" /> | 33 | <Payload Name="1049\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1049=SourceDir\1049\mbapreq.wxl)" /> |
72 | <Payload Name="1051\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1051=SourceDir\1051\mbapreq.wxl)" /> | 34 | <Payload Name="1051\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1051=SourceDir\1051\mbapreq.wxl)" /> |
73 | <Payload Name="1053\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1053=SourceDir\1053\mbapreq.wxl)" /> | 35 | <Payload Name="1053\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1053=SourceDir\1053\mbapreq.wxl)" /> |
74 | <Payload Name="1055\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1055=SourceDir\1055\mbapreq.wxl)" /> | 36 | <Payload Name="1055\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1055=SourceDir\1055\mbapreq.wxl)" /> |
75 | <Payload Name="1060\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl1060=SourceDir\1060\mbapreq.wxl)" /> | 37 | <Payload Name="1060\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl1060=SourceDir\1060\mbapreq.wxl)" /> |
76 | <Payload Name="2052\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl2052=SourceDir\2052\mbapreq.wxl)" /> | 38 | <Payload Name="2052\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl2052=SourceDir\2052\mbapreq.wxl)" /> |
77 | <Payload Name="2070\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl2070=SourceDir\2070\mbapreq.wxl)" /> | 39 | <Payload Name="2070\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl2070=SourceDir\2070\mbapreq.wxl)" /> |
78 | <Payload Name="3082\mbapreq.wxl" Compressed="yes" SourceFile="!(wix.PreqbaThemeWxl3082=SourceDir\3082\mbapreq.wxl)" /> | 40 | <Payload Name="3082\mbapreq.wxl" SourceFile="!(wix.PreqbaThemeWxl3082=SourceDir\3082\mbapreq.wxl)" /> |
79 | </PayloadGroup> | 41 | </PayloadGroup> |
80 | </Fragment> | 42 | </Fragment> |
81 | </Wix> | 43 | </Wix> |
diff --git a/src/wixlib/caDecor.wxi b/src/wixlib/caDecor.wxi new file mode 100644 index 00000000..b1711518 --- /dev/null +++ b/src/wixlib/caDecor.wxi | |||
@@ -0,0 +1,39 @@ | |||
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 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?ifdef Prefix ?> | ||
6 | <?undef Prefix ?> | ||
7 | <?endif?> | ||
8 | |||
9 | <?define Prefix="Wix4" ?> | ||
10 | |||
11 | <?ifndef platform ?> | ||
12 | <?define platform="x86" ?> | ||
13 | <?endif?> | ||
14 | |||
15 | <?if $(var.platform)="" ?> | ||
16 | <?undef platform ?> | ||
17 | <?define platform="x86" ?> | ||
18 | <?endif?> | ||
19 | |||
20 | <?ifdef Suffix ?> | ||
21 | <?undef Suffix ?> | ||
22 | <?endif?> | ||
23 | |||
24 | <?if $(var.platform)~="x86" ?> | ||
25 | <?define Suffix="_X86" ?> | ||
26 | <?endif?> | ||
27 | |||
28 | <?if $(var.platform)~="x64" ?> | ||
29 | <?define Suffix="_X64" ?> | ||
30 | <?endif?> | ||
31 | |||
32 | <?if $(var.platform)~="arm" ?> | ||
33 | <?define Suffix="_A32" ?> | ||
34 | <?endif?> | ||
35 | |||
36 | <?if $(var.platform)~="arm64" ?> | ||
37 | <?define Suffix="_A64" ?> | ||
38 | <?endif?> | ||
39 | </Include> | ||
diff --git a/src/wixlib/caSuffix.wxi b/src/wixlib/caSuffix.wxi deleted file mode 100644 index 18436269..00000000 --- a/src/wixlib/caSuffix.wxi +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
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 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
4 | <?ifndef platform ?> | ||
5 | <?error Required value "platform" not defined in include caSuffix.wxi ?> | ||
6 | <?endif?> | ||
7 | |||
8 | <?ifdef Suffix ?> | ||
9 | <?undef Suffix ?> | ||
10 | <?undef DeferredSuffix ?> | ||
11 | <?endif?> | ||
12 | |||
13 | <?if $(var.platform)="x86" ?> | ||
14 | <?define Suffix="" ?> | ||
15 | <?define DeferredSuffix="" ?> | ||
16 | <?endif?> | ||
17 | |||
18 | <?if $(var.platform)="x64" ?> | ||
19 | <?define Suffix="_x64" ?> | ||
20 | <?define DeferredSuffix="_64" ?> | ||
21 | <?endif?> | ||
22 | |||
23 | <?if $(var.platform)="arm" ?> | ||
24 | <?define Suffix="_ARM" ?> | ||
25 | <?define DeferredSuffix="_ARM" ?> | ||
26 | <?endif?> | ||
27 | </Include> | ||
diff --git a/src/wixlib/wixstdba_platform.wxi b/src/wixlib/wixstdba_platform.wxi deleted file mode 100644 index fae52b80..00000000 --- a/src/wixlib/wixstdba_platform.wxi +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
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 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?include caSuffix.wxi ?> | ||
6 | <Fragment> | ||
7 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLicense$(var.Suffix)"> | ||
8 | <PayloadGroupRef Id="WixStdbaRtfLicensePayloads" /> | ||
9 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> | ||
10 | </BootstrapperApplication> | ||
11 | </Fragment> | ||
12 | |||
13 | <Fragment> | ||
14 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLargeLicense$(var.Suffix)"> | ||
15 | <PayloadGroupRef Id="WixStdbaRtfLargeLicensePayloads" /> | ||
16 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> | ||
17 | </BootstrapperApplication> | ||
18 | </Fragment> | ||
19 | |||
20 | <Fragment> | ||
21 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLicense$(var.Suffix)"> | ||
22 | <PayloadGroupRef Id="WixStdbaHyperlinkLicensePayloads" /> | ||
23 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> | ||
24 | </BootstrapperApplication> | ||
25 | </Fragment> | ||
26 | |||
27 | <Fragment> | ||
28 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLargeLicense$(var.Suffix)"> | ||
29 | <PayloadGroupRef Id="WixStdbaHyperlinkLargeLicensePayloads" /> | ||
30 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> | ||
31 | </BootstrapperApplication> | ||
32 | </Fragment> | ||
33 | |||
34 | <Fragment> | ||
35 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkSidebarLicense$(var.Suffix)"> | ||
36 | <PayloadGroupRef Id="WixStdbaHyperlinkSidebarLicensePayloads" /> | ||
37 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> | ||
38 | </BootstrapperApplication> | ||
39 | </Fragment> | ||
40 | |||
41 | <Fragment> | ||
42 | |||
43 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.Foundation$(var.Suffix)"> | ||
44 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> | ||
45 | </BootstrapperApplication> | ||
46 | </Fragment> | ||
47 | </Include> | ||