aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/NetCore3.1.3.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixlib/NetCore3.1.3.wxs')
-rw-r--r--src/wixlib/NetCore3.1.3.wxs103
1 files changed, 103 insertions, 0 deletions
diff --git a/src/wixlib/NetCore3.1.3.wxs b/src/wixlib/NetCore3.1.3.wxs
new file mode 100644
index 00000000..8f4cba15
--- /dev/null
+++ b/src/wixlib/NetCore3.1.3.wxs
@@ -0,0 +1,103 @@
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" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
5 <Fragment>
6 <Variable Name="DotNetRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.NETCore.App\3.1.3"/>
7 <util:DirectorySearch Id="DotNetRuntime31Installed" Path="[DotNetRuntime31InstallDir]" Variable="DotNetRuntime31Installed" Result="exists"/>
8
9 <WixVariable Id="DotNetRuntime31WebDetectCondition" Value="DotNetRuntime31Installed" Overridable="yes"/>
10 <WixVariable Id="DotNetRuntime31WebInstallCondition" Value="" Overridable="yes"/>
11
12 <PackageGroup Id="DotNetRuntime31Web">
13 <ExePackage
14 Name="dotnet-runtime-3.1.3-win-x64.exe"
15 InstallCommand="/install /quiet /norestart /log &quot;[DotNetRuntime31Log]&quot;"
16 RepairCommand="/repair /quiet /norestart /log &quot;[DotNetRuntime31Log]&quot;"
17 UninstallCommand="/uninstall /quiet /norestart /log &quot;[DotNetRuntime31Log]&quot;"
18 PerMachine="yes"
19 DetectCondition="!(wix.DotNetRuntime31WebDetectCondition)"
20 InstallCondition="!(wix.DotNetRuntime31WebInstallCondition)"
21 Vital="yes"
22 Permanent="yes"
23 Protocol="burn"
24 DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/945df1ae-989b-4909-9d40-6b93e34cfa94/91f6c347203ad24bed374bf692e3a379/dotnet-runtime-3.1.3-win-x64.exe"
25 LogPathVariable="DotNetRuntime31Log"
26 Compressed="no">
27 <RemotePayload CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457"
28 CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32"
29 Description="Microsoft .NET Core Runtime - 3.1.3 (x64)"
30 Hash="AE0F5F1E87D687FDFE9FBE0A3BB1B9573FF9DD56"
31 ProductName="Microsoft .NET Core Runtime - 3.1.3 (x64)"
32 Size="26117496"
33 Version="3.1.3.28628"/>
34 </ExePackage>
35 </PackageGroup>
36 </Fragment>
37
38 <Fragment>
39 <Variable Name="AspNetCoreRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.AspNetCore.App\3.1.3"/>
40 <util:DirectorySearch Id="AspNetCoreRuntime31Installed" Path="[AspNetCoreRuntime31InstallDir]" Variable="AspNetCoreRuntime31Installed" Result="exists"/>
41
42 <WixVariable Id="AspNetCoreRuntime31WebDetectCondition" Value="AspNetCoreRuntime31Installed" Overridable="yes"/>
43 <WixVariable Id="AspNetCoreRuntime31WebInstallCondition" Value="" Overridable="yes"/>
44
45 <PackageGroup Id="AspNetCoreRuntime31Web">
46 <ExePackage
47 Name="aspnetcore-runtime-3.1.3-win-x64.exe"
48 InstallCommand="/install /quiet /norestart /log &quot;[AspNetCoreRuntime31Log]&quot;"
49 RepairCommand="/repair /quiet /norestart /log &quot;[AspNetCoreRuntime31Log]&quot;"
50 UninstallCommand="/uninstall /quiet /norestart /log &quot;[AspNetCoreRuntime31Log]&quot;"
51 PerMachine="yes"
52 DetectCondition="!(wix.AspNetCoreRuntime31WebDetectCondition)"
53 InstallCondition="!(wix.AspNetCoreRuntime31WebInstallCondition)"
54 Vital="yes"
55 Permanent="yes"
56 Protocol="burn"
57 DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/4b970ea4-cae6-4e36-a0a1-86a7efa9958e/0633df1e7f959795278c0c55afc2daa3/aspnetcore-runtime-3.1.3-win-x64.exe"
58 LogPathVariable="AspNetCoreRuntime31Log"
59 Compressed="no">
60 <RemotePayload CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457"
61 CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32"
62 Description="Microsoft ASP.NET Core 3.1.3 - Shared Framework"
63 Hash="E6B175E66DE4662CEF161FF3263A97410E993D18"
64 ProductName="Microsoft ASP.NET Core 3.1.3 - Shared Framework"
65 Size="7868592"
66 Version="3.1.3.20163"/>
67 </ExePackage>
68 </PackageGroup>
69 </Fragment>
70
71 <Fragment>
72 <Variable Name="WindowsDesktopRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.WindowsDesktop.App\3.1.3"/>
73 <util:DirectorySearch Id="WindowsDesktopRuntime31Installed" Path="[WindowsDesktopRuntime31InstallDir]" Variable="WindowsDesktopRuntime31Installed" Result="exists"/>
74
75 <WixVariable Id="WindowsDesktopRuntime31WebDetectCondition" Value="WindowsDesktopRuntime31Installed" Overridable="yes"/>
76 <WixVariable Id="WindowsDesktopRuntime31WebInstallCondition" Value="" Overridable="yes"/>
77
78 <PackageGroup Id="WindowsDesktopRuntime31Web">
79 <ExePackage
80 Name="windowsdesktop-runtime-3.1.3-win-x64.exe"
81 InstallCommand="/install /quiet /norestart /log &quot;[WindowsDesktopRuntime31Log]&quot;"
82 RepairCommand="/repair /quiet /norestart /log &quot;[WindowsDesktopRuntime31Log]&quot;"
83 UninstallCommand="/uninstall /quiet /norestart /log &quot;[WindowsDesktopRuntime31Log]&quot;"
84 PerMachine="yes"
85 DetectCondition="!(wix.WindowsDesktopRuntime31WebDetectCondition)"
86 InstallCondition="!(wix.WindowsDesktopRuntime31WebInstallCondition)"
87 Vital="yes"
88 Permanent="yes"
89 Protocol="burn"
90 DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/5954c748-86a1-4823-9e7d-d35f6039317a/169e82cbf6fdeb678c5558c5d0a83834/windowsdesktop-runtime-3.1.3-win-x64.exe"
91 LogPathVariable="WindowsDesktopRuntime31Log"
92 Compressed="no">
93 <RemotePayload CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457"
94 CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32"
95 Description="Microsoft Windows Desktop Runtime - 3.1.3 (x64)"
96 Hash="9A965A63214627F2C9B3A38E402B561BFD275422"
97 ProductName="Microsoft Windows Desktop Runtime - 3.1.3 (x64)"
98 Size="54449000"
99 Version="3.1.3.28628"/>
100 </ExePackage>
101 </PackageGroup>
102 </Fragment>
103</Wix>