Skip to content
This repository was archived by the owner on Mar 10, 2026. It is now read-only.

Commit 84c97c0

Browse files
committed
Update VisualStudio Project
1 parent 5f67be4 commit 84c97c0

12 files changed

+73
-51
lines changed

cups/tls-sspi.c

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1767,21 +1767,25 @@ http_sspi_find_credentials(
17671767
#ifdef SP_PROT_TLS1_2_SERVER
17681768
if (http->mode == _HTTP_MODE_SERVER)
17691769
{
1770-
if (tls_options & _HTTP_TLS_DENY_TLS10)
1771-
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_SERVER | SP_PROT_TLS1_1_SERVER;
1772-
else if (tls_options & _HTTP_TLS_ALLOW_SSL3)
1770+
if (tls_min_version == _HTTP_TLS_SSL3)
17731771
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_SERVER | SP_PROT_TLS1_1_SERVER | SP_PROT_TLS1_0_SERVER | SP_PROT_SSL3_SERVER;
1774-
else
1772+
else if (tls_min_version == _HTTP_TLS_1_0)
17751773
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_SERVER | SP_PROT_TLS1_1_SERVER | SP_PROT_TLS1_0_SERVER;
1774+
else if (tls_min_version == _HTTP_TLS_1_1)
1775+
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_SERVER | SP_PROT_TLS1_1_SERVER;
1776+
else
1777+
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_SERVER;
17761778
}
17771779
else
17781780
{
1779-
if (tls_options & _HTTP_TLS_DENY_TLS10)
1780-
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_CLIENT | SP_PROT_TLS1_1_CLIENT;
1781-
else if (tls_options & _HTTP_TLS_ALLOW_SSL3)
1781+
if (tls_min_version == _HTTP_TLS_SSL3)
17821782
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_CLIENT | SP_PROT_TLS1_1_CLIENT | SP_PROT_TLS1_0_CLIENT | SP_PROT_SSL3_CLIENT;
1783-
else
1783+
else if (tls_min_version == _HTTP_TLS_1_0)
17841784
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_CLIENT | SP_PROT_TLS1_1_CLIENT | SP_PROT_TLS1_0_CLIENT;
1785+
else if (tls_min_version == _HTTP_TLS_1_1)
1786+
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_CLIENT | SP_PROT_TLS1_1_CLIENT;
1787+
else
1788+
SchannelCred.grbitEnabledProtocols = SP_PROT_TLS1_2_CLIENT;
17851789
}
17861790

17871791
#else

vcnet/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
* and strnicmp() functions...
5757
*/
5858

59-
#define strcasecmp stricmp
60-
#define strncasecmp strnicmp
59+
#define strcasecmp _stricmp
60+
#define strncasecmp _strnicmp
6161

6262

6363
/*

vcnet/cupstestppd.vcxproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -22,28 +22,29 @@
2222
<ProjectGuid>{6BE0CDD3-4ED7-409C-A80F-19DF73664B1F}</ProjectGuid>
2323
<RootNamespace>cupstestppd</RootNamespace>
2424
<Keyword>Win32Proj</Keyword>
25+
<WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion>
2526
</PropertyGroup>
2627
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2728
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2829
<ConfigurationType>Application</ConfigurationType>
29-
<PlatformToolset>v140</PlatformToolset>
30+
<PlatformToolset>v141</PlatformToolset>
3031
<CharacterSet>Unicode</CharacterSet>
3132
<WholeProgramOptimization>true</WholeProgramOptimization>
3233
</PropertyGroup>
3334
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3435
<ConfigurationType>Application</ConfigurationType>
35-
<PlatformToolset>v140</PlatformToolset>
36+
<PlatformToolset>v141</PlatformToolset>
3637
<CharacterSet>Unicode</CharacterSet>
3738
</PropertyGroup>
3839
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3940
<ConfigurationType>Application</ConfigurationType>
40-
<PlatformToolset>v140</PlatformToolset>
41+
<PlatformToolset>v141</PlatformToolset>
4142
<CharacterSet>Unicode</CharacterSet>
4243
<WholeProgramOptimization>true</WholeProgramOptimization>
4344
</PropertyGroup>
4445
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4546
<ConfigurationType>Application</ConfigurationType>
46-
<PlatformToolset>v140</PlatformToolset>
47+
<PlatformToolset>v141</PlatformToolset>
4748
<CharacterSet>Unicode</CharacterSet>
4849
</PropertyGroup>
4950
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

vcnet/ippfind.vcxproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -22,28 +22,29 @@
2222
<ProjectGuid>{B484DA0C-62C8-4C32-83B6-CCEB58968B85}</ProjectGuid>
2323
<RootNamespace>ippfind</RootNamespace>
2424
<Keyword>Win32Proj</Keyword>
25+
<WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion>
2526
</PropertyGroup>
2627
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2728
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2829
<ConfigurationType>Application</ConfigurationType>
29-
<PlatformToolset>v140</PlatformToolset>
30+
<PlatformToolset>v141</PlatformToolset>
3031
<CharacterSet>Unicode</CharacterSet>
3132
<WholeProgramOptimization>true</WholeProgramOptimization>
3233
</PropertyGroup>
3334
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3435
<ConfigurationType>Application</ConfigurationType>
35-
<PlatformToolset>v140</PlatformToolset>
36+
<PlatformToolset>v141</PlatformToolset>
3637
<CharacterSet>Unicode</CharacterSet>
3738
</PropertyGroup>
3839
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3940
<ConfigurationType>Application</ConfigurationType>
40-
<PlatformToolset>v140</PlatformToolset>
41+
<PlatformToolset>v141</PlatformToolset>
4142
<CharacterSet>Unicode</CharacterSet>
4243
<WholeProgramOptimization>true</WholeProgramOptimization>
4344
</PropertyGroup>
4445
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4546
<ConfigurationType>Application</ConfigurationType>
46-
<PlatformToolset>v140</PlatformToolset>
47+
<PlatformToolset>v141</PlatformToolset>
4748
<CharacterSet>Unicode</CharacterSet>
4849
</PropertyGroup>
4950
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

vcnet/ippserver.vcxproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -22,28 +22,29 @@
2222
<ProjectGuid>{82A03BC7-0746-4B85-8908-3C7A3FAA58A9}</ProjectGuid>
2323
<RootNamespace>ippserver</RootNamespace>
2424
<Keyword>Win32Proj</Keyword>
25+
<WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion>
2526
</PropertyGroup>
2627
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2728
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2829
<ConfigurationType>Application</ConfigurationType>
29-
<PlatformToolset>v140</PlatformToolset>
30+
<PlatformToolset>v141</PlatformToolset>
3031
<CharacterSet>Unicode</CharacterSet>
3132
<WholeProgramOptimization>true</WholeProgramOptimization>
3233
</PropertyGroup>
3334
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3435
<ConfigurationType>Application</ConfigurationType>
35-
<PlatformToolset>v140</PlatformToolset>
36+
<PlatformToolset>v141</PlatformToolset>
3637
<CharacterSet>Unicode</CharacterSet>
3738
</PropertyGroup>
3839
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3940
<ConfigurationType>Application</ConfigurationType>
40-
<PlatformToolset>v140</PlatformToolset>
41+
<PlatformToolset>v141</PlatformToolset>
4142
<CharacterSet>Unicode</CharacterSet>
4243
<WholeProgramOptimization>true</WholeProgramOptimization>
4344
</PropertyGroup>
4445
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4546
<ConfigurationType>Application</ConfigurationType>
46-
<PlatformToolset>v140</PlatformToolset>
47+
<PlatformToolset>v141</PlatformToolset>
4748
<CharacterSet>Unicode</CharacterSet>
4849
</PropertyGroup>
4950
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

vcnet/ipptool.vcxproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -22,28 +22,29 @@
2222
<ProjectGuid>{B246D91E-61F2-4433-BFD2-6C2A96FBD4D4}</ProjectGuid>
2323
<RootNamespace>ipptool</RootNamespace>
2424
<Keyword>Win32Proj</Keyword>
25+
<WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion>
2526
</PropertyGroup>
2627
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2728
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2829
<ConfigurationType>Application</ConfigurationType>
29-
<PlatformToolset>v140</PlatformToolset>
30+
<PlatformToolset>v141</PlatformToolset>
3031
<CharacterSet>Unicode</CharacterSet>
3132
<WholeProgramOptimization>true</WholeProgramOptimization>
3233
</PropertyGroup>
3334
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3435
<ConfigurationType>Application</ConfigurationType>
35-
<PlatformToolset>v140</PlatformToolset>
36+
<PlatformToolset>v141</PlatformToolset>
3637
<CharacterSet>Unicode</CharacterSet>
3738
</PropertyGroup>
3839
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3940
<ConfigurationType>Application</ConfigurationType>
40-
<PlatformToolset>v140</PlatformToolset>
41+
<PlatformToolset>v141</PlatformToolset>
4142
<CharacterSet>Unicode</CharacterSet>
4243
<WholeProgramOptimization>true</WholeProgramOptimization>
4344
</PropertyGroup>
4445
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4546
<ConfigurationType>Application</ConfigurationType>
46-
<PlatformToolset>v140</PlatformToolset>
47+
<PlatformToolset>v141</PlatformToolset>
4748
<CharacterSet>Unicode</CharacterSet>
4849
</PropertyGroup>
4950
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

vcnet/libcups2.vcxproj

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -22,26 +22,27 @@
2222
<ProjectGuid>{CB4AA6F2-3E84-45BE-B505-95CD375E8BE3}</ProjectGuid>
2323
<RootNamespace>libcups2</RootNamespace>
2424
<Keyword>Win32Proj</Keyword>
25+
<WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion>
2526
</PropertyGroup>
2627
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2728
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2829
<ConfigurationType>DynamicLibrary</ConfigurationType>
29-
<PlatformToolset>v140</PlatformToolset>
30+
<PlatformToolset>v141</PlatformToolset>
3031
<CharacterSet>MultiByte</CharacterSet>
3132
</PropertyGroup>
3233
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3334
<ConfigurationType>DynamicLibrary</ConfigurationType>
34-
<PlatformToolset>v140</PlatformToolset>
35+
<PlatformToolset>v141</PlatformToolset>
3536
<CharacterSet>MultiByte</CharacterSet>
3637
</PropertyGroup>
3738
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3839
<ConfigurationType>DynamicLibrary</ConfigurationType>
39-
<PlatformToolset>v140</PlatformToolset>
40+
<PlatformToolset>v141</PlatformToolset>
4041
<CharacterSet>MultiByte</CharacterSet>
4142
</PropertyGroup>
4243
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4344
<ConfigurationType>DynamicLibrary</ConfigurationType>
44-
<PlatformToolset>v140</PlatformToolset>
45+
<PlatformToolset>v141</PlatformToolset>
4546
<CharacterSet>MultiByte</CharacterSet>
4647
</PropertyGroup>
4748
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
@@ -386,6 +387,7 @@ xcopy /I/Y "$(TargetPath)"
386387
</ItemGroup>
387388
<ItemGroup>
388389
<None Include="..\cups\libcups2.def" />
390+
<None Include="packages.config" />
389391
</ItemGroup>
390392
<ItemGroup>
391393
<ClInclude Include="..\cups\adminutil.h" />
@@ -423,5 +425,12 @@ xcopy /I/Y "$(TargetPath)"
423425
</ItemGroup>
424426
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
425427
<ImportGroup Label="ExtensionTargets">
428+
<Import Project="packages\zlib128-vc140-static-32_64.1.2.8\build\native\zlib128-vc140-static-32_64.targets" Condition="Exists('packages\zlib128-vc140-static-32_64.1.2.8\build\native\zlib128-vc140-static-32_64.targets')" />
426429
</ImportGroup>
430+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
431+
<PropertyGroup>
432+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
433+
</PropertyGroup>
434+
<Error Condition="!Exists('packages\zlib128-vc140-static-32_64.1.2.8\build\native\zlib128-vc140-static-32_64.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\zlib128-vc140-static-32_64.1.2.8\build\native\zlib128-vc140-static-32_64.targets'))" />
435+
</Target>
427436
</Project>

vcnet/libcups2.vcxproj.filters

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@
167167
<None Include="..\cups\libcups2.def">
168168
<Filter>Source Files</Filter>
169169
</None>
170+
<None Include="packages.config" />
170171
</ItemGroup>
171172
<ItemGroup>
172173
<ClInclude Include="..\cups\adminutil.h">

vcnet/libcupsimage2.vcxproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -21,26 +21,27 @@
2121
<PropertyGroup Label="Globals">
2222
<ProjectGuid>{CB4AA6F2-3E84-45BE-B505-95CD375E1234}</ProjectGuid>
2323
<Keyword>Win32Proj</Keyword>
24+
<WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion>
2425
</PropertyGroup>
2526
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2627
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2728
<ConfigurationType>DynamicLibrary</ConfigurationType>
28-
<PlatformToolset>v140</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
2930
<CharacterSet>MultiByte</CharacterSet>
3031
</PropertyGroup>
3132
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3233
<ConfigurationType>DynamicLibrary</ConfigurationType>
33-
<PlatformToolset>v140</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3435
<CharacterSet>MultiByte</CharacterSet>
3536
</PropertyGroup>
3637
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3738
<ConfigurationType>DynamicLibrary</ConfigurationType>
38-
<PlatformToolset>v140</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
3940
<CharacterSet>MultiByte</CharacterSet>
4041
</PropertyGroup>
4142
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4243
<ConfigurationType>DynamicLibrary</ConfigurationType>
43-
<PlatformToolset>v140</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4445
<CharacterSet>MultiByte</CharacterSet>
4546
</PropertyGroup>
4647
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

vcnet/regex.vcxproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -22,28 +22,29 @@
2222
<ProjectGuid>{18950A1B-D37A-40C7-B2DF-C12986C0526E}</ProjectGuid>
2323
<RootNamespace>regex</RootNamespace>
2424
<Keyword>Win32Proj</Keyword>
25+
<WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion>
2526
</PropertyGroup>
2627
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2728
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2829
<ConfigurationType>DynamicLibrary</ConfigurationType>
29-
<PlatformToolset>v140</PlatformToolset>
30+
<PlatformToolset>v141</PlatformToolset>
3031
<CharacterSet>Unicode</CharacterSet>
3132
<WholeProgramOptimization>true</WholeProgramOptimization>
3233
</PropertyGroup>
3334
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3435
<ConfigurationType>DynamicLibrary</ConfigurationType>
35-
<PlatformToolset>v140</PlatformToolset>
36+
<PlatformToolset>v141</PlatformToolset>
3637
<CharacterSet>Unicode</CharacterSet>
3738
</PropertyGroup>
3839
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3940
<ConfigurationType>DynamicLibrary</ConfigurationType>
40-
<PlatformToolset>v140</PlatformToolset>
41+
<PlatformToolset>v141</PlatformToolset>
4142
<CharacterSet>Unicode</CharacterSet>
4243
<WholeProgramOptimization>true</WholeProgramOptimization>
4344
</PropertyGroup>
4445
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4546
<ConfigurationType>DynamicLibrary</ConfigurationType>
46-
<PlatformToolset>v140</PlatformToolset>
47+
<PlatformToolset>v141</PlatformToolset>
4748
<CharacterSet>Unicode</CharacterSet>
4849
</PropertyGroup>
4950
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

0 commit comments

Comments
 (0)