diff options
Diffstat (limited to 'src/wixlib/NetCore3.1.1_x64.wxs')
-rw-r--r-- | src/wixlib/NetCore3.1.1_x64.wxs | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/src/wixlib/NetCore3.1.1_x64.wxs b/src/wixlib/NetCore3.1.1_x64.wxs new file mode 100644 index 00000000..834752b0 --- /dev/null +++ b/src/wixlib/NetCore3.1.1_x64.wxs | |||
@@ -0,0 +1,125 @@ | |||
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 = x64?> | ||
8 | <?define NetCoreIdVersion = 311?> | ||
9 | <?define NetCoreVersion = 3.1.1?> | ||
10 | <?include NetCore3_Platform.wxi?> | ||
11 | |||
12 | <?define AspNetCoreRedistLink = https://download.visualstudio.microsoft.com/download/pr/fa469b98-e312-4744-9dab-a46d2242b0ab/ae5e1eb530e312d68b501b7dd03d4c00/aspnetcore-runtime-3.1.1-win-x64.exe?> | ||
13 | <?define DesktopNetCoreRedistLink = https://download.visualstudio.microsoft.com/download/pr/a1d41522-4da0-42bc-b3f2-e4b7d842974d/03101425368c87c55c1fe7cafbb4e0fb/windowsdesktop-runtime-3.1.1-win-x64.exe?> | ||
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 | <PackageGroup Id="$(var.AspNetCoreRedistId)"> | ||
63 | <ExePackage | ||
64 | Name="!(wix.AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)PackageDirectory)aspnetcore-runtime-$(var.NetCoreVersion)-win-$(var.NetCorePlatform).exe" | ||
65 | InstallCommand="$(var.AspNetCoreRedistInstallCommand)" | ||
66 | RepairCommand="!(wix.AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)RepairCommand)" | ||
67 | UninstallCommand="$(var.AspNetCoreRedistUninstallCommand)" | ||
68 | PerMachine="yes" | ||
69 | DetectCondition="!(wix.AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)DetectCondition)" | ||
70 | InstallCondition="!(wix.AspNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)InstallCondition)" | ||
71 | Id="$(var.AspNetCoreRedistId)" | ||
72 | Vital="yes" | ||
73 | Permanent="yes" | ||
74 | Protocol="burn" | ||
75 | DownloadUrl="$(var.AspNetCoreRedistLink)" | ||
76 | LogPathVariable="$(var.AspNetCoreRedistLog)" | ||
77 | Compressed="no"> | ||
78 | <RemotePayload | ||
79 | CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457" | ||
80 | CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32" | ||
81 | Description="Microsoft ASP.NET Core 3.1.1 - Shared Framework" | ||
82 | Hash="6614D5792D9335632D66C3EB7DE942A7AE10D6BE" | ||
83 | ProductName="Microsoft ASP.NET Core 3.1.1 - Shared Framework" | ||
84 | Size="7867488" | ||
85 | Version="3.1.1.19615"/> | ||
86 | </ExePackage> | ||
87 | </PackageGroup> | ||
88 | </Fragment> | ||
89 | |||
90 | <Fragment> | ||
91 | <util:DirectorySearchRef Id="$(var.DesktopNetCoreId)" /> | ||
92 | |||
93 | <WixVariable Id="DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)DetectCondition" Value="$(var.DesktopNetCoreId)" Overridable="yes" /> | ||
94 | <WixVariable Id="DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)InstallCondition" Value="" Overridable="yes" /> | ||
95 | <WixVariable Id="DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)PackageDirectory" Value="redist\" Overridable="yes" /> | ||
96 | <WixVariable Id="DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)RepairCommand" Value="" Overridable="yes" /> | ||
97 | |||
98 | <PackageGroup Id="$(var.DesktopNetCoreRedistId)"> | ||
99 | <ExePackage | ||
100 | Name="!(wix.DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)PackageDirectory)windowsdesktop-runtime-$(var.NetCoreVersion)-win-$(var.NetCorePlatform).exe" | ||
101 | InstallCommand="$(var.DesktopNetCoreRedistInstallCommand)" | ||
102 | RepairCommand="!(wix.DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)RepairCommand)" | ||
103 | UninstallCommand="$(var.DesktopNetCoreRedistUninstallCommand)" | ||
104 | PerMachine="yes" | ||
105 | DetectCondition="!(wix.DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)DetectCondition)" | ||
106 | InstallCondition="!(wix.DesktopNetCoreRuntime$(var.NetCoreIdVersion)Redist$(var.NetCorePlatform)InstallCondition)" | ||
107 | Id="$(var.DesktopNetCoreRedistId)" | ||
108 | Vital="yes" | ||
109 | Permanent="yes" | ||
110 | Protocol="burn" | ||
111 | DownloadUrl="$(var.DesktopNetCoreRedistLink)" | ||
112 | LogPathVariable="$(var.DesktopNetCoreRedistLog)" | ||
113 | Compressed="no"> | ||
114 | <RemotePayload | ||
115 | CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457" | ||
116 | CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32" | ||
117 | Description="Microsoft Windows Desktop Runtime - 3.1.1 (x64)" | ||
118 | Hash="AE723619D9CD6407F3D4B4948DF4F026A99781DC" | ||
119 | ProductName="Microsoft Windows Desktop Runtime - 3.1.1 (x64)" | ||
120 | Size="54211664" | ||
121 | Version="3.1.1.28408"/> | ||
122 | </ExePackage> | ||
123 | </PackageGroup> | ||
124 | </Fragment> | ||
125 | </Wix> | ||