diff options
Diffstat (limited to 'src/wixlib/NetCore3.1.3_x86.wxs')
-rw-r--r-- | src/wixlib/NetCore3.1.3_x86.wxs | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/src/wixlib/NetCore3.1.3_x86.wxs b/src/wixlib/NetCore3.1.3_x86.wxs new file mode 100644 index 00000000..c9fe9806 --- /dev/null +++ b/src/wixlib/NetCore3.1.3_x86.wxs | |||
@@ -0,0 +1,131 @@ | |||
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 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" | ||
5 | xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> | ||
6 | |||
7 | <?define NetCorePlatform = x86?> | ||
8 | <?define NetCoreIdVersion = 313?> | ||
9 | <?define NetCoreVersion = 3.1.3?> | ||
10 | <?include NetCore3_Platform.wxi?> | ||
11 | |||
12 | <?define AspNetCoreRedistLink = ?> | ||
13 | <?define DesktopNetCoreRedistLink = ?> | ||
14 | <?define DotNetCoreRedistLink = ?> | ||
15 | |||
16 | <Fragment> | ||
17 | <util:DirectorySearchRef Id="$(var.DotNetCoreId)" /> | ||
18 | |||
19 | <WixVariable Id="DotNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)DetectCondition" Value="$(var.DotNetCoreId)" Overridable="yes" /> | ||
20 | <WixVariable Id="DotNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)InstallCondition" Value="" Overridable="yes" /> | ||
21 | <WixVariable Id="DotNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)PackageDirectory" Value="redist\" Overridable="yes" /> | ||
22 | <WixVariable Id="DotNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)RepairCommand" Value="" Overridable="yes" /> | ||
23 | |||
24 | <!-- | ||
25 | <PackageGroup Id="$(var.DotNetCoreRedistId)"> | ||
26 | <ExePackage | ||
27 | Name="!(wix.DotNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)PackageDirectory)dotnet-runtime-$(var.NetCoreVersion)-win-$(var.NetCorePlatform).exe" | ||
28 | InstallCommand="$(var.DotNetCoreRedistInstallCommand)" | ||
29 | RepairCommand="!(wix.DotNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)RepairCommand)" | ||
30 | UninstallCommand="$(var.DotNetCoreRedistUninstallCommand)" | ||
31 | PerMachine="yes" | ||
32 | DetectCondition="!(wix.DotNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)DetectCondition)" | ||
33 | InstallCondition="!(wix.DotNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)InstallCondition)" | ||
34 | Id="$(var.DotNetCoreRedistId)" | ||
35 | Vital="yes" | ||
36 | Permanent="yes" | ||
37 | Protocol="burn" | ||
38 | DownloadUrl="$(var.DotNetCoreRedistLink)" | ||
39 | LogPathVariable="$(var.DotNetCoreRedistLog)" | ||
40 | Compressed="no"> | ||
41 | TODO: Get RemotePayload info | ||
42 | <RemotePayload CertificatePublicKey="" | ||
43 | CertificateThumbprint="" | ||
44 | Description="" | ||
45 | Hash="" | ||
46 | ProductName="" | ||
47 | Size="" | ||
48 | Version=""/> | ||
49 | </ExePackage> | ||
50 | </PackageGroup> | ||
51 | --> | ||
52 | </Fragment> | ||
53 | |||
54 | <Fragment> | ||
55 | <util:DirectorySearchRef Id="$(var.AspNetCoreId)" /> | ||
56 | |||
57 | <WixVariable Id="AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)DetectCondition" Value="$(var.AspNetCoreId)" Overridable="yes" /> | ||
58 | <WixVariable Id="AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)InstallCondition" Value="" Overridable="yes" /> | ||
59 | <WixVariable Id="AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)PackageDirectory" Value="redist\" Overridable="yes" /> | ||
60 | <WixVariable Id="AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)RepairCommand" Value="" Overridable="yes" /> | ||
61 | |||
62 | <!-- | ||
63 | <PackageGroup Id="$(var.AspNetCoreRedistId)"> | ||
64 | <ExePackage | ||
65 | Name="!(wix.AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)PackageDirectory)aspnetcore-runtime-$(var.NetCoreVersion)-win-$(var.NetCorePlatform).exe" | ||
66 | InstallCommand="$(var.AspNetCoreRedistInstallCommand)" | ||
67 | RepairCommand="!(wix.AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)RepairCommand)" | ||
68 | UninstallCommand="$(var.AspNetCoreRedistUninstallCommand)" | ||
69 | PerMachine="yes" | ||
70 | DetectCondition="!(wix.AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)DetectCondition)" | ||
71 | InstallCondition="!(wix.AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)InstallCondition)" | ||
72 | Id="$(var.AspNetCoreRedistId)" | ||
73 | Vital="yes" | ||
74 | Permanent="yes" | ||
75 | Protocol="burn" | ||
76 | DownloadUrl="$(var.AspNetCoreRedistLink)" | ||
77 | LogPathVariable="$(var.AspNetCoreRedistLog)" | ||
78 | Compressed="no"> | ||
79 | TODO: Get RemotePayload info | ||
80 | <RemotePayload | ||
81 | CertificatePublicKey="" | ||
82 | CertificateThumbprint="" | ||
83 | Description="" | ||
84 | Hash="" | ||
85 | ProductName="" | ||
86 | Size="" | ||
87 | Version="" /> | ||
88 | </ExePackage> | ||
89 | </PackageGroup> | ||
90 | --> | ||
91 | </Fragment> | ||
92 | |||
93 | <Fragment> | ||
94 | <util:DirectorySearchRef Id="$(var.DesktopNetCoreId)" /> | ||
95 | |||
96 | <WixVariable Id="DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)DetectCondition" Value="$(var.DesktopNetCoreId)" Overridable="yes" /> | ||
97 | <WixVariable Id="DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)InstallCondition" Value="" Overridable="yes" /> | ||
98 | <WixVariable Id="DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)PackageDirectory" Value="redist\" Overridable="yes" /> | ||
99 | <WixVariable Id="DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)RepairCommand" Value="" Overridable="yes" /> | ||
100 | |||
101 | <!-- | ||
102 | <PackageGroup Id="$(var.DesktopNetCoreRedistId)"> | ||
103 | <ExePackage | ||
104 | Name="!(wix.DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)PackageDirectory)windowsdesktop-runtime-$(var.NetCoreVersion)-win-$(var.NetCorePlatform).exe" | ||
105 | InstallCommand="$(var.DesktopNetCoreRedistInstallCommand)" | ||
106 | RepairCommand="!(wix.DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)RepairCommand)" | ||
107 | UninstallCommand="$(var.DesktopNetCoreRedistUninstallCommand)" | ||
108 | PerMachine="yes" | ||
109 | DetectCondition="!(wix.DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)DetectCondition)" | ||
110 | InstallCondition="!(wix.DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)InstallCondition)" | ||
111 | Id="$(var.DesktopNetCoreRedistId)" | ||
112 | Vital="yes" | ||
113 | Permanent="yes" | ||
114 | Protocol="burn" | ||
115 | DownloadUrl="$(var.DesktopNetCoreRedistLink)" | ||
116 | LogPathVariable="$(var.DesktopNetCoreRedistLog)" | ||
117 | Compressed="no"> | ||
118 | TODO: Get RemotePayload info | ||
119 | <RemotePayload | ||
120 | CertificatePublicKey="" | ||
121 | CertificateThumbprint="" | ||
122 | Description="" | ||
123 | Hash="" | ||
124 | ProductName="" | ||
125 | Size="" | ||
126 | Version="" /> | ||
127 | </ExePackage> | ||
128 | </PackageGroup> | ||
129 | --> | ||
130 | </Fragment> | ||
131 | </Wix> | ||