From 400bb421cd6e2eaaea0368386144dda8ac3c007f Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sat, 22 May 2021 23:17:59 +0200 Subject: [PATCH] Updated the Windows SDK version to 10.0.14393.0 + explicitly set MinimumRequiredVersion to 5.1 (for Windows XP). --- MUtilities_VS2017.vcxproj | 8 ++++---- MUtilities_VS2019.vcxproj | 2 +- include/MUtils/Version.h | 6 +++++- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/MUtilities_VS2017.vcxproj b/MUtilities_VS2017.vcxproj index 06827ac..8174502 100644 --- a/MUtilities_VS2017.vcxproj +++ b/MUtilities_VS2017.vcxproj @@ -105,26 +105,26 @@ Win32Proj MUtilities MUtilities - 8.1 + 10.0.14393.0 DynamicLibrary true - v141_xp + v141 Unicode DynamicLibrary false - v141_xp + v141 true Unicode StaticLibrary false - v141_xp + v141 true Unicode diff --git a/MUtilities_VS2019.vcxproj b/MUtilities_VS2019.vcxproj index c28e76c..0777dc9 100644 --- a/MUtilities_VS2019.vcxproj +++ b/MUtilities_VS2019.vcxproj @@ -105,7 +105,7 @@ Win32Proj MUtilities MUtilities - 8.1 + 10.0.17763.0 diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index b90cfcc..b0e366b 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -68,7 +68,11 @@ namespace MUtils #endif #elif defined(_MSC_VER) #if (_MSC_VER == 1928) - "MSVC 2019.8"; + #if (_MSC_FULL_VER < 192829910) + "MSVC 2019.8"; + #else + "MSVC 2019.9"; + #endif #elif (_MSC_VER == 1927) "MSVC 2019.7"; #elif (_MSC_VER == 1926)