diff --git a/README.md b/README.md index 72c49243a2..0819bccbda 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Microsoft PowerToys is a set of utilities for power users to tune and streamline - Windows 10 v1903 (build 18362) or newer. - ⚠️ PowerToys minimum version of Windows 10 is v1903 starting with the 0.37 release -- Have [.NET Core 3.1.13 Desktop Runtime](https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-desktop-3.1.13-windows-x64-installer). The installer should handle this but we want to directly make people aware. +- Have [.NET Core 3.1.14 Desktop Runtime](https://dotnet.microsoft.com/download/dotnet/thank-you/runtime-desktop-3.1.14-windows-x64-installer). The installer should handle this but we want to directly make people aware. ### Via GitHub with EXE [Recommended] diff --git a/src/common/updating/dotnet_installation.cpp b/src/common/updating/dotnet_installation.cpp index 7cd7383d6a..b3ad70f051 100644 --- a/src/common/updating/dotnet_installation.cpp +++ b/src/common/updating/dotnet_installation.cpp @@ -10,7 +10,7 @@ namespace fs = std::filesystem; namespace updating { - constexpr size_t REQUIRED_MINIMAL_PATCH = 13; + constexpr size_t REQUIRED_MINIMAL_PATCH = 14; bool dotnet_is_installed() { @@ -46,7 +46,7 @@ namespace updating std::optional download_dotnet() { - const wchar_t DOTNET_DESKTOP_DOWNLOAD_LINK[] = L"https://download.visualstudio.microsoft.com/download/pr/aa717f57-3ae5-48fa-a3ab-0018338d0726/fb37276b1575772461701339110e7a54/windowsdesktop-runtime-3.1.13-win-x64.exe"; + const wchar_t DOTNET_DESKTOP_DOWNLOAD_LINK[] = L"https://download.visualstudio.microsoft.com/download/pr/88437980-f813-4a01-865c-f992ad4909bb/9a936984781f6ce3526ffc946267e0ea/windowsdesktop-runtime-3.1.14-win-x64.exe"; const wchar_t DOTNET_DESKTOP_FILENAME[] = L"windowsdesktop-runtime.exe"; auto dotnet_download_path = fs::temp_directory_path() / DOTNET_DESKTOP_FILENAME;