diff options
Diffstat (limited to 'src/wixlib/NetCore3.1.wxs')
-rw-r--r-- | src/wixlib/NetCore3.1.wxs | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/src/wixlib/NetCore3.1.wxs b/src/wixlib/NetCore3.1.wxs new file mode 100644 index 00000000..7f1cd2f9 --- /dev/null +++ b/src/wixlib/NetCore3.1.wxs | |||
@@ -0,0 +1,74 @@ | |||
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="AspNetCoreRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.AspNetCore.App\3.1.0" /> | ||
7 | <util:DirectorySearch Id="AspNetCoreRuntime31Installed" Path="[AspNetCoreRuntime31InstallDir]" Variable="AspNetCoreRuntime31Installed" Result="exists" /> | ||
8 | |||
9 | <WixVariable Id="AspNetCoreRuntime31WebDetectCondition" Value="AspNetCoreRuntime31Installed" Overridable="yes" /> | ||
10 | <WixVariable Id="AspNetCoreRuntime31WebInstallCondition" Value="" Overridable="yes" /> | ||
11 | |||
12 | <PackageGroup Id="AspNetCoreRuntime31Web"> | ||
13 | <ExePackage | ||
14 | Name="aspnetcore-runtime-3.1.0-win-x64.exe" | ||
15 | InstallCommand="/install /quiet /norestart /log "[AspNetCoreRuntime31Log]"" | ||
16 | RepairCommand="/repair /quiet /norestart /log "[AspNetCoreRuntime31Log]"" | ||
17 | UninstallCommand="/uninstall /quiet /norestart /log "[AspNetCoreRuntime31Log]"" | ||
18 | PerMachine="yes" | ||
19 | DetectCondition="!(wix.AspNetCoreRuntime31WebDetectCondition)" | ||
20 | InstallCondition="!(wix.AspNetCoreRuntime31WebInstallCondition)" | ||
21 | Vital="yes" | ||
22 | Permanent="yes" | ||
23 | Protocol="burn" | ||
24 | DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/a16689d1-0872-4ef9-a592-406d3038d8f7/cf4f84504385a599f0cb6a5c113ccb34/aspnetcore-runtime-3.1.0-win-x64.exe" | ||
25 | LogPathVariable="AspNetCoreRuntime31Log" | ||
26 | Compressed="no"> | ||
27 | <!-- heat.exe payload "aspnetcore-runtime-3.1.0-win-x64.exe" -o "aspnetcore-runtime.wxs" --> | ||
28 | <RemotePayload | ||
29 | CertificatePublicKey="6608A9DBA86701156A4C17CE63BA99BE8B932F8D" | ||
30 | CertificateThumbprint="62009AAABDAE749FD47D19150958329BF6FF4B34" | ||
31 | Description="Microsoft ASP.NET Core 3.1.0 - Shared Framework" | ||
32 | Hash="2DFD4F9EA2E174A7199C40ED3A826886F1E19EF8" | ||
33 | ProductName="Microsoft ASP.NET Core 3.1.0 - Shared Framework" | ||
34 | Size="7811768" | ||
35 | Version="3.1.0.19566" /> | ||
36 | </ExePackage> | ||
37 | </PackageGroup> | ||
38 | </Fragment> | ||
39 | |||
40 | <Fragment> | ||
41 | <Variable Name="WindowsDesktopRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.WindowsDesktop.App\3.1.0" /> | ||
42 | <util:DirectorySearch Id="WindowsDesktopRuntime31Installed" Path="[WindowsDesktopRuntime31InstallDir]" Variable="WindowsDesktopRuntime31Installed" Result="exists" /> | ||
43 | |||
44 | <WixVariable Id="WindowsDesktopRuntime31WebDetectCondition" Value="WindowsDesktopRuntime31Installed" Overridable="yes" /> | ||
45 | <WixVariable Id="WindowsDesktopRuntime31WebInstallCondition" Value="" Overridable="yes" /> | ||
46 | |||
47 | <PackageGroup Id="WindowsDesktopRuntime31Web"> | ||
48 | <ExePackage | ||
49 | Name="windowsdesktop-runtime-3.1.0-win-x64.exe" | ||
50 | InstallCommand="/install /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" | ||
51 | RepairCommand="/repair /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" | ||
52 | UninstallCommand="/uninstall /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" | ||
53 | PerMachine="yes" | ||
54 | DetectCondition="!(wix.WindowsDesktopRuntime31WebDetectCondition)" | ||
55 | InstallCondition="!(wix.WindowsDesktopRuntime31WebInstallCondition)" | ||
56 | Vital="yes" | ||
57 | Permanent="yes" | ||
58 | Protocol="burn" | ||
59 | DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/a1510e74-b31a-4434-b8a0-8074ff31fb3f/b7de8ecba4a14d8312551cfdc745dea1/windowsdesktop-runtime-3.1.0-win-x64.exe" | ||
60 | LogPathVariable="WindowsDesktopRuntime31Log" | ||
61 | Compressed="no"> | ||
62 | <!-- heat.exe payload "windowsdesktop-runtime-3.1.0-win-x64.exe" -o "windowsdesktop-runtime.wxs" --> | ||
63 | <RemotePayload | ||
64 | CertificatePublicKey="6608A9DBA86701156A4C17CE63BA99BE8B932F8D" | ||
65 | CertificateThumbprint="62009AAABDAE749FD47D19150958329BF6FF4B34" | ||
66 | Description="Microsoft Windows Desktop Runtime - 3.1.0 (x64)" | ||
67 | Hash="C16F271754879BA78868947486F37871C9F0E40F" | ||
68 | ProductName="Microsoft Windows Desktop Runtime - 3.1.0 (x64)" | ||
69 | Size="54443856" | ||
70 | Version="3.1.0.28315" /> | ||
71 | </ExePackage> | ||
72 | </PackageGroup> | ||
73 | </Fragment> | ||
74 | </Wix> | ||