Updated the Windows SDK version to 10.0.14393.0 + explicitly set MinimumRequiredVersion to 5.1 (for Windows XP).

This commit is contained in:
LoRd_MuldeR 2021-05-22 23:17:59 +02:00
parent bb42907493
commit 400bb421cd
3 changed files with 10 additions and 6 deletions

View File

@ -105,26 +105,26 @@
<Keyword>Win32Proj</Keyword>
<RootNamespace>MUtilities</RootNamespace>
<ProjectName>MUtilities</ProjectName>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0.14393.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v141_xp</PlatformToolset>
<PlatformToolset>v141</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141_xp</PlatformToolset>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_Static|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141_xp</PlatformToolset>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>

View File

@ -105,7 +105,7 @@
<Keyword>Win32Proj</Keyword>
<RootNamespace>MUtilities</RootNamespace>
<ProjectName>MUtilities</ProjectName>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

View File

@ -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)