Skip to content

Commit 9cdd560

Browse files
committed
Visual Studio builds: Use Visual Studio 2017.
libsigc++-3.x requires C++-14 features which are only adequately supported on Visual Studio 2017, so update the project settings to Visual Studio 2017. Note that the 2017 CRT still makes use of the 2015 CRT as they aim to be compatiable with each other.
1 parent 1585954 commit 9cdd560

32 files changed

+120
-124
lines changed

MSVC_Net2013/libsigc++2.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Microsoft Visual Studio Solution File, Format Version 13.00
2-
# Visual Studio 2013
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio 15
33
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sigc", "libsigc++2.vcxproj", "{83997EF6-02D6-4CDB-8B3C-DBCA3018CC72}"
44
EndProject
55
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_bind", "test_bind.vcxproj", "{7D0D2CF8-5B22-4F9E-BD38-63083A2CF662}"

MSVC_Net2013/libsigc++2.vcxproj

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@
2727
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2828
<ConfigurationType>DynamicLibrary</ConfigurationType>
2929
<CharacterSet>MultiByte</CharacterSet>
30-
<PlatformToolset>v120</PlatformToolset>
30+
<PlatformToolset>v141</PlatformToolset>
3131
</PropertyGroup>
3232
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3333
<ConfigurationType>DynamicLibrary</ConfigurationType>
3434
<CharacterSet>MultiByte</CharacterSet>
35-
<PlatformToolset>v120</PlatformToolset>
35+
<PlatformToolset>v141</PlatformToolset>
3636
</PropertyGroup>
3737
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3838
<ConfigurationType>DynamicLibrary</ConfigurationType>
3939
<CharacterSet>MultiByte</CharacterSet>
40-
<PlatformToolset>v120</PlatformToolset>
40+
<PlatformToolset>v141</PlatformToolset>
4141
</PropertyGroup>
4242
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4343
<ConfigurationType>DynamicLibrary</ConfigurationType>
4444
<CharacterSet>MultiByte</CharacterSet>
45-
<PlatformToolset>v120</PlatformToolset>
45+
<PlatformToolset>v141</PlatformToolset>
4646
</PropertyGroup>
4747
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4848
<ImportGroup Label="ExtensionSettings">
@@ -125,10 +125,8 @@
125125
</ItemDefinitionGroup>
126126
<ItemGroup>
127127
<ClCompile Include="..\sigc++\connection.cc" />
128-
<ClCompile Include="..\sigc++\signal.cc" />
129128
<ClCompile Include="..\sigc++\signal_base.cc" />
130129
<ClCompile Include="..\sigc++\trackable.cc" />
131-
<ClCompile Include="..\sigc++\functors\slot.cc" />
132130
<ClCompile Include="..\sigc++\functors\slot_base.cc" />
133131
</ItemGroup>
134132
<ItemGroup>

MSVC_Net2013/libsigc++2.vcxproj.filters

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
</ItemGroup>
1717
<ItemGroup>
1818
<ClCompile Include="..\sigc++\connection.cc"><Filter>Source Files</Filter></ClCompile>
19-
<ClCompile Include="..\sigc++\signal.cc"><Filter>Source Files</Filter></ClCompile>
2019
<ClCompile Include="..\sigc++\signal_base.cc"><Filter>Source Files</Filter></ClCompile>
21-
<ClCompile Include="..\sigc++\functors\slot.cc"><Filter>Source Files</Filter></ClCompile>
2220
<ClCompile Include="..\sigc++\functors\slot_base.cc"><Filter>Source Files</Filter></ClCompile>
2321
<ClCompile Include="..\sigc++\trackable.cc"><Filter>Source Files</Filter></ClCompile>
2422
</ItemGroup>

MSVC_Net2013/sigc-install.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,23 @@
2828
<ConfigurationType>Utility</ConfigurationType>
2929
<CharacterSet>MultiByte</CharacterSet>
3030
<WholeProgramOptimization>true</WholeProgramOptimization>
31-
<PlatformToolset>v120</PlatformToolset>
31+
<PlatformToolset>v141</PlatformToolset>
3232
</PropertyGroup>
3333
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3434
<ConfigurationType>Utility</ConfigurationType>
3535
<CharacterSet>MultiByte</CharacterSet>
36-
<PlatformToolset>v120</PlatformToolset>
36+
<PlatformToolset>v141</PlatformToolset>
3737
</PropertyGroup>
3838
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3939
<ConfigurationType>Utility</ConfigurationType>
4040
<CharacterSet>MultiByte</CharacterSet>
4141
<WholeProgramOptimization>true</WholeProgramOptimization>
42-
<PlatformToolset>v120</PlatformToolset>
42+
<PlatformToolset>v141</PlatformToolset>
4343
</PropertyGroup>
4444
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4545
<ConfigurationType>Utility</ConfigurationType>
4646
<CharacterSet>MultiByte</CharacterSet>
47-
<PlatformToolset>v120</PlatformToolset>
47+
<PlatformToolset>v141</PlatformToolset>
4848
</PropertyGroup>
4949
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5050
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/sigc-version-paths.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup Label="UserMacros">
4-
<VSVer>12</VSVer>
4+
<VSVer>14</VSVer>
55
<GlibEtcInstallRoot>$(SolutionDir)\..\..\vs$(VSVer)\$(Platform)</GlibEtcInstallRoot>
66
<CopyDir>$(GlibEtcInstallRoot)</CopyDir>
77
<DefDir>$(SolutionDir)$(Configuration)\$(Platform)\obj\$(ProjectName)\</DefDir>
8-
<ApiMajorVersion>2</ApiMajorVersion>
8+
<ApiMajorVersion>3</ApiMajorVersion>
99
<ApiMinorVersion>0</ApiMinorVersion>
1010
<ReleaseDllSuffix>-vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion)</ReleaseDllSuffix>
1111
<DebugDllSuffix>-vc$(VSVer)0-d-$(ApiMajorVersion)_$(ApiMinorVersion)</DebugDllSuffix>

MSVC_Net2013/test_accum_iter.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_accumulated.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_bind.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_bind_ref.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_bind_refptr.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_bind_return.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_compose.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_copy_invalid_slot.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_cpp11_lambda.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_custom.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

MSVC_Net2013/test_disconnect.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<CharacterSet>MultiByte</CharacterSet>
29-
<PlatformToolset>v120</PlatformToolset>
29+
<PlatformToolset>v141</PlatformToolset>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3232
<ConfigurationType>Application</ConfigurationType>
3333
<CharacterSet>MultiByte</CharacterSet>
34-
<PlatformToolset>v120</PlatformToolset>
34+
<PlatformToolset>v141</PlatformToolset>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<CharacterSet>MultiByte</CharacterSet>
39-
<PlatformToolset>v120</PlatformToolset>
39+
<PlatformToolset>v141</PlatformToolset>
4040
</PropertyGroup>
4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4242
<ConfigurationType>Application</ConfigurationType>
4343
<CharacterSet>MultiByte</CharacterSet>
44-
<PlatformToolset>v120</PlatformToolset>
44+
<PlatformToolset>v141</PlatformToolset>
4545
</PropertyGroup>
4646
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4747
<ImportGroup Label="ExtensionSettings">

0 commit comments

Comments
 (0)