From 037243df84151413db9666c78526fc60ff5e3b53 Mon Sep 17 00:00:00 2001 From: William Kent <wjk@users.noreply.github.com> Date: Mon, 18 May 2020 20:48:06 -0400 Subject: Add predefined payload for .NET Core 3.1.x --- src/wixlib/NetCore3.1.1.wxs | 74 +++++++++++++++++++++++++++++++ src/wixlib/NetCore3.1.2.wxs | 74 +++++++++++++++++++++++++++++++ src/wixlib/NetCore3.1.3.wxs | 103 ++++++++++++++++++++++++++++++++++++++++++++ src/wixlib/NetCore3.1.wxs | 74 +++++++++++++++++++++++++++++++ src/wixlib/netfx.wixproj | 4 ++ 5 files changed, 329 insertions(+) create mode 100644 src/wixlib/NetCore3.1.1.wxs create mode 100644 src/wixlib/NetCore3.1.2.wxs create mode 100644 src/wixlib/NetCore3.1.3.wxs create mode 100644 src/wixlib/NetCore3.1.wxs diff --git a/src/wixlib/NetCore3.1.1.wxs b/src/wixlib/NetCore3.1.1.wxs new file mode 100644 index 00000000..109d4f6b --- /dev/null +++ b/src/wixlib/NetCore3.1.1.wxs @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- 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. --> + +<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> + <Fragment> + <Variable Name="AspNetCoreRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.AspNetCore.App\3.1.1"/> + <util:DirectorySearch Id="AspNetCoreRuntime31Installed" Path="[AspNetCoreRuntime31InstallDir]" Variable="AspNetCoreRuntime31Installed" Result="exists"/> + + <WixVariable Id="AspNetCoreRuntime31WebDetectCondition" Value="AspNetCoreRuntime31Installed" Overridable="yes"/> + <WixVariable Id="AspNetCoreRuntime31WebInstallCondition" Value="" Overridable="yes"/> + + <PackageGroup Id="AspNetCoreRuntime31Web"> + <ExePackage + Name="aspnetcore-runtime-3.1.1-win-x64.exe" + InstallCommand="/install /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + RepairCommand="/repair /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + UninstallCommand="/uninstall /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + PerMachine="yes" + DetectCondition="!(wix.AspNetCoreRuntime31WebDetectCondition)" + InstallCondition="!(wix.AspNetCoreRuntime31WebInstallCondition)" + Vital="yes" + Permanent="yes" + Protocol="burn" + DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/fa469b98-e312-4744-9dab-a46d2242b0ab/ae5e1eb530e312d68b501b7dd03d4c00/aspnetcore-runtime-3.1.1-win-x64.exe" + LogPathVariable="AspNetCoreRuntime31Log" + Compressed="no"> + <!-- "%WIX%\bin\heat.exe" payload "aspnetcore-runtime-3.1.1-win-x64.exe" -o "aspnetcore-runtime.wxs" --> + <RemotePayload + CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457" + CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32" + Description="Microsoft ASP.NET Core 3.1.1 - Shared Framework" + Hash="6614D5792D9335632D66C3EB7DE942A7AE10D6BE" + ProductName="Microsoft ASP.NET Core 3.1.1 - Shared Framework" + Size="7867488" + Version="3.1.1.19615"/> + </ExePackage> + </PackageGroup> + </Fragment> + + <Fragment> + <Variable Name="WindowsDesktopRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.WindowsDesktop.App\3.1.1"/> + <util:DirectorySearch Id="WindowsDesktopRuntime31Installed" Path="[WindowsDesktopRuntime31InstallDir]" Variable="WindowsDesktopRuntime31Installed" Result="exists"/> + + <WixVariable Id="WindowsDesktopRuntime31WebDetectCondition" Value="WindowsDesktopRuntime31Installed" Overridable="yes"/> + <WixVariable Id="WindowsDesktopRuntime31WebInstallCondition" Value="" Overridable="yes"/> + + <PackageGroup Id="WindowsDesktopRuntime31Web"> + <ExePackage + Name="windowsdesktop-runtime-3.1.1-win-x64.exe" + InstallCommand="/install /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + RepairCommand="/repair /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + UninstallCommand="/uninstall /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + PerMachine="yes" + DetectCondition="!(wix.WindowsDesktopRuntime31WebDetectCondition)" + InstallCondition="!(wix.WindowsDesktopRuntime31WebInstallCondition)" + Vital="yes" + Permanent="yes" + Protocol="burn" + DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/a1d41522-4da0-42bc-b3f2-e4b7d842974d/03101425368c87c55c1fe7cafbb4e0fb/windowsdesktop-runtime-3.1.1-win-x64.exe" + LogPathVariable="WindowsDesktopRuntime31Log" + Compressed="no"> + <!-- "%WIX%\bin\heat.exe" payload "windowsdesktop-runtime-3.1.1-win-x64.exe" -o "windowsdesktop-runtime.wxs" --> + <RemotePayload + CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457" + CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32" + Description="Microsoft Windows Desktop Runtime - 3.1.1 (x64)" + Hash="AE723619D9CD6407F3D4B4948DF4F026A99781DC" + ProductName="Microsoft Windows Desktop Runtime - 3.1.1 (x64)" + Size="54211664" + Version="3.1.1.28408"/> + </ExePackage> + </PackageGroup> + </Fragment> +</Wix> diff --git a/src/wixlib/NetCore3.1.2.wxs b/src/wixlib/NetCore3.1.2.wxs new file mode 100644 index 00000000..f8a5a7b5 --- /dev/null +++ b/src/wixlib/NetCore3.1.2.wxs @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- 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. --> + +<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> + <Fragment> + <Variable Name="AspNetCoreRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.AspNetCore.App\3.1.2"/> + <util:DirectorySearch Id="AspNetCoreRuntime31Installed" Path="[AspNetCoreRuntime31InstallDir]" Variable="AspNetCoreRuntime31Installed" Result="exists"/> + + <WixVariable Id="AspNetCoreRuntime31WebDetectCondition" Value="AspNetCoreRuntime31Installed" Overridable="yes"/> + <WixVariable Id="AspNetCoreRuntime31WebInstallCondition" Value="" Overridable="yes"/> + + <PackageGroup Id="AspNetCoreRuntime31Web"> + <ExePackage + Name="aspnetcore-runtime-3.1.2-win-x64.exe" + InstallCommand="/install /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + RepairCommand="/repair /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + UninstallCommand="/uninstall /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + PerMachine="yes" + DetectCondition="!(wix.AspNetCoreRuntime31WebDetectCondition)" + InstallCondition="!(wix.AspNetCoreRuntime31WebInstallCondition)" + Vital="yes" + Permanent="yes" + Protocol="burn" + DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/326b33d1-6bbd-4149-ba35-c94784700674/c06386c2b09401fa94f9595617899d5d/aspnetcore-runtime-3.1.2-win-x64.exe" + LogPathVariable="AspNetCoreRuntime31Log" + Compressed="no"> + <!-- "%WIX%\bin\heat.exe" payload "aspnetcore-runtime-3.1.2-win-x64.exe" -o "aspnetcore-runtime.wxs" --> + <RemotePayload + CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457" + CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32" + Description="Microsoft ASP.NET Core 3.1.2 - Shared Framework" + Hash="B8EDDD91C0DFD9E47EB7DD7EFED9541340607ADC" + ProductName="Microsoft ASP.NET Core 3.1.2 - Shared Framework" + Size="7812680" + Version="3.1.2.20068"/> + </ExePackage> + </PackageGroup> + </Fragment> + + <Fragment> + <Variable Name="WindowsDesktopRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.WindowsDesktop.App\3.1.2"/> + <util:DirectorySearch Id="WindowsDesktopRuntime31Installed" Path="[WindowsDesktopRuntime31InstallDir]" Variable="WindowsDesktopRuntime31Installed" Result="exists"/> + + <WixVariable Id="WindowsDesktopRuntime31WebDetectCondition" Value="WindowsDesktopRuntime31Installed" Overridable="yes"/> + <WixVariable Id="WindowsDesktopRuntime31WebInstallCondition" Value="" Overridable="yes"/> + + <PackageGroup Id="WindowsDesktopRuntime31Web"> + <ExePackage + Name="windowsdesktop-runtime-3.1.2-win-x64.exe" + InstallCommand="/install /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + RepairCommand="/repair /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + UninstallCommand="/uninstall /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + PerMachine="yes" + DetectCondition="!(wix.WindowsDesktopRuntime31WebDetectCondition)" + InstallCondition="!(wix.WindowsDesktopRuntime31WebInstallCondition)" + Vital="yes" + Permanent="yes" + Protocol="burn" + DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/3240250e-6fe0-4258-af69-85abef6c00de/e01ee0af6c65d894f4a02bdf6705ec7b/windowsdesktop-runtime-3.1.2-win-x64.exe" + LogPathVariable="WindowsDesktopRuntime31Log" + Compressed="no"> + <!-- "%WIX%\bin\heat.exe" payload "windowsdesktop-runtime-3.1.2-win-x64.exe" -o "windowsdesktop-runtime.wxs" --> + <RemotePayload + CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457" + CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32" + Description="Microsoft Windows Desktop Runtime - 3.1.2 (x64)" + Hash="C3A76B6C91FB28EFD95422EF82523A73DED322C4" + ProductName="Microsoft Windows Desktop Runtime - 3.1.2 (x64)" + Size="54323576" + Version="3.1.2.28517"/> + </ExePackage> + </PackageGroup> + </Fragment> +</Wix> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- 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. --> + +<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> + <Fragment> + <Variable Name="DotNetRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.NETCore.App\3.1.3"/> + <util:DirectorySearch Id="DotNetRuntime31Installed" Path="[DotNetRuntime31InstallDir]" Variable="DotNetRuntime31Installed" Result="exists"/> + + <WixVariable Id="DotNetRuntime31WebDetectCondition" Value="DotNetRuntime31Installed" Overridable="yes"/> + <WixVariable Id="DotNetRuntime31WebInstallCondition" Value="" Overridable="yes"/> + + <PackageGroup Id="DotNetRuntime31Web"> + <ExePackage + Name="dotnet-runtime-3.1.3-win-x64.exe" + InstallCommand="/install /quiet /norestart /log "[DotNetRuntime31Log]"" + RepairCommand="/repair /quiet /norestart /log "[DotNetRuntime31Log]"" + UninstallCommand="/uninstall /quiet /norestart /log "[DotNetRuntime31Log]"" + PerMachine="yes" + DetectCondition="!(wix.DotNetRuntime31WebDetectCondition)" + InstallCondition="!(wix.DotNetRuntime31WebInstallCondition)" + Vital="yes" + Permanent="yes" + Protocol="burn" + DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/945df1ae-989b-4909-9d40-6b93e34cfa94/91f6c347203ad24bed374bf692e3a379/dotnet-runtime-3.1.3-win-x64.exe" + LogPathVariable="DotNetRuntime31Log" + Compressed="no"> + <RemotePayload CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457" + CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32" + Description="Microsoft .NET Core Runtime - 3.1.3 (x64)" + Hash="AE0F5F1E87D687FDFE9FBE0A3BB1B9573FF9DD56" + ProductName="Microsoft .NET Core Runtime - 3.1.3 (x64)" + Size="26117496" + Version="3.1.3.28628"/> + </ExePackage> + </PackageGroup> + </Fragment> + + <Fragment> + <Variable Name="AspNetCoreRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.AspNetCore.App\3.1.3"/> + <util:DirectorySearch Id="AspNetCoreRuntime31Installed" Path="[AspNetCoreRuntime31InstallDir]" Variable="AspNetCoreRuntime31Installed" Result="exists"/> + + <WixVariable Id="AspNetCoreRuntime31WebDetectCondition" Value="AspNetCoreRuntime31Installed" Overridable="yes"/> + <WixVariable Id="AspNetCoreRuntime31WebInstallCondition" Value="" Overridable="yes"/> + + <PackageGroup Id="AspNetCoreRuntime31Web"> + <ExePackage + Name="aspnetcore-runtime-3.1.3-win-x64.exe" + InstallCommand="/install /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + RepairCommand="/repair /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + UninstallCommand="/uninstall /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + PerMachine="yes" + DetectCondition="!(wix.AspNetCoreRuntime31WebDetectCondition)" + InstallCondition="!(wix.AspNetCoreRuntime31WebInstallCondition)" + Vital="yes" + Permanent="yes" + Protocol="burn" + DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/4b970ea4-cae6-4e36-a0a1-86a7efa9958e/0633df1e7f959795278c0c55afc2daa3/aspnetcore-runtime-3.1.3-win-x64.exe" + LogPathVariable="AspNetCoreRuntime31Log" + Compressed="no"> + <RemotePayload CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457" + CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32" + Description="Microsoft ASP.NET Core 3.1.3 - Shared Framework" + Hash="E6B175E66DE4662CEF161FF3263A97410E993D18" + ProductName="Microsoft ASP.NET Core 3.1.3 - Shared Framework" + Size="7868592" + Version="3.1.3.20163"/> + </ExePackage> + </PackageGroup> + </Fragment> + + <Fragment> + <Variable Name="WindowsDesktopRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.WindowsDesktop.App\3.1.3"/> + <util:DirectorySearch Id="WindowsDesktopRuntime31Installed" Path="[WindowsDesktopRuntime31InstallDir]" Variable="WindowsDesktopRuntime31Installed" Result="exists"/> + + <WixVariable Id="WindowsDesktopRuntime31WebDetectCondition" Value="WindowsDesktopRuntime31Installed" Overridable="yes"/> + <WixVariable Id="WindowsDesktopRuntime31WebInstallCondition" Value="" Overridable="yes"/> + + <PackageGroup Id="WindowsDesktopRuntime31Web"> + <ExePackage + Name="windowsdesktop-runtime-3.1.3-win-x64.exe" + InstallCommand="/install /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + RepairCommand="/repair /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + UninstallCommand="/uninstall /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + PerMachine="yes" + DetectCondition="!(wix.WindowsDesktopRuntime31WebDetectCondition)" + InstallCondition="!(wix.WindowsDesktopRuntime31WebInstallCondition)" + Vital="yes" + Permanent="yes" + Protocol="burn" + DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/5954c748-86a1-4823-9e7d-d35f6039317a/169e82cbf6fdeb678c5558c5d0a83834/windowsdesktop-runtime-3.1.3-win-x64.exe" + LogPathVariable="WindowsDesktopRuntime31Log" + Compressed="no"> + <RemotePayload CertificatePublicKey="6ADD0C9D1AC70DA3668644B1C78884E82E3F3457" + CertificateThumbprint="711AF71DC4C4952C8ED65BB4BA06826ED3922A32" + Description="Microsoft Windows Desktop Runtime - 3.1.3 (x64)" + Hash="9A965A63214627F2C9B3A38E402B561BFD275422" + ProductName="Microsoft Windows Desktop Runtime - 3.1.3 (x64)" + Size="54449000" + Version="3.1.3.28628"/> + </ExePackage> + </PackageGroup> + </Fragment> +</Wix> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- 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. --> + +<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> + <Fragment> + <Variable Name="AspNetCoreRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.AspNetCore.App\3.1.0" /> + <util:DirectorySearch Id="AspNetCoreRuntime31Installed" Path="[AspNetCoreRuntime31InstallDir]" Variable="AspNetCoreRuntime31Installed" Result="exists" /> + + <WixVariable Id="AspNetCoreRuntime31WebDetectCondition" Value="AspNetCoreRuntime31Installed" Overridable="yes" /> + <WixVariable Id="AspNetCoreRuntime31WebInstallCondition" Value="" Overridable="yes" /> + + <PackageGroup Id="AspNetCoreRuntime31Web"> + <ExePackage + Name="aspnetcore-runtime-3.1.0-win-x64.exe" + InstallCommand="/install /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + RepairCommand="/repair /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + UninstallCommand="/uninstall /quiet /norestart /log "[AspNetCoreRuntime31Log]"" + PerMachine="yes" + DetectCondition="!(wix.AspNetCoreRuntime31WebDetectCondition)" + InstallCondition="!(wix.AspNetCoreRuntime31WebInstallCondition)" + Vital="yes" + Permanent="yes" + Protocol="burn" + DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/a16689d1-0872-4ef9-a592-406d3038d8f7/cf4f84504385a599f0cb6a5c113ccb34/aspnetcore-runtime-3.1.0-win-x64.exe" + LogPathVariable="AspNetCoreRuntime31Log" + Compressed="no"> + <!-- heat.exe payload "aspnetcore-runtime-3.1.0-win-x64.exe" -o "aspnetcore-runtime.wxs" --> + <RemotePayload + CertificatePublicKey="6608A9DBA86701156A4C17CE63BA99BE8B932F8D" + CertificateThumbprint="62009AAABDAE749FD47D19150958329BF6FF4B34" + Description="Microsoft ASP.NET Core 3.1.0 - Shared Framework" + Hash="2DFD4F9EA2E174A7199C40ED3A826886F1E19EF8" + ProductName="Microsoft ASP.NET Core 3.1.0 - Shared Framework" + Size="7811768" + Version="3.1.0.19566" /> + </ExePackage> + </PackageGroup> + </Fragment> + + <Fragment> + <Variable Name="WindowsDesktopRuntime31InstallDir" Value="[ProgramFiles64Folder]dotnet\shared\Microsoft.WindowsDesktop.App\3.1.0" /> + <util:DirectorySearch Id="WindowsDesktopRuntime31Installed" Path="[WindowsDesktopRuntime31InstallDir]" Variable="WindowsDesktopRuntime31Installed" Result="exists" /> + + <WixVariable Id="WindowsDesktopRuntime31WebDetectCondition" Value="WindowsDesktopRuntime31Installed" Overridable="yes" /> + <WixVariable Id="WindowsDesktopRuntime31WebInstallCondition" Value="" Overridable="yes" /> + + <PackageGroup Id="WindowsDesktopRuntime31Web"> + <ExePackage + Name="windowsdesktop-runtime-3.1.0-win-x64.exe" + InstallCommand="/install /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + RepairCommand="/repair /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + UninstallCommand="/uninstall /quiet /norestart /log "[WindowsDesktopRuntime31Log]"" + PerMachine="yes" + DetectCondition="!(wix.WindowsDesktopRuntime31WebDetectCondition)" + InstallCondition="!(wix.WindowsDesktopRuntime31WebInstallCondition)" + Vital="yes" + Permanent="yes" + Protocol="burn" + DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/a1510e74-b31a-4434-b8a0-8074ff31fb3f/b7de8ecba4a14d8312551cfdc745dea1/windowsdesktop-runtime-3.1.0-win-x64.exe" + LogPathVariable="WindowsDesktopRuntime31Log" + Compressed="no"> + <!-- heat.exe payload "windowsdesktop-runtime-3.1.0-win-x64.exe" -o "windowsdesktop-runtime.wxs" --> + <RemotePayload + CertificatePublicKey="6608A9DBA86701156A4C17CE63BA99BE8B932F8D" + CertificateThumbprint="62009AAABDAE749FD47D19150958329BF6FF4B34" + Description="Microsoft Windows Desktop Runtime - 3.1.0 (x64)" + Hash="C16F271754879BA78868947486F37871C9F0E40F" + ProductName="Microsoft Windows Desktop Runtime - 3.1.0 (x64)" + Size="54443856" + Version="3.1.0.28315" /> + </ExePackage> + </PackageGroup> + </Fragment> +</Wix> diff --git a/src/wixlib/netfx.wixproj b/src/wixlib/netfx.wixproj index e9b95422..a9df9790 100644 --- a/src/wixlib/netfx.wixproj +++ b/src/wixlib/netfx.wixproj @@ -27,6 +27,10 @@ <Compile Include="NetFx461.wxs" /> <Compile Include="NetFx462.wxs" /> <Compile Include="NetFxExtension_x86.wxs" /> + <Compile Include="NetCore3.1.wxs" /> + <Compile Include="NetCore3.1.1.wxs" /> + <Compile Include="NetCore3.1.2.wxs" /> + <Compile Include="NetCore3.1.3.wxs" /> </ItemGroup> <ItemGroup> <None Include="packages.config" /> -- cgit v1.2.3-55-g6feb