Merge pull request #779 from JunielKatarn/fix_vs2010_toolset

Fix default toolset when using VS 2010
This commit is contained in:
zilmar 2015-11-24 15:26:34 +11:00
commit 06dfc4eb94
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Configuration"> <PropertyGroup Label="Configuration">
<PlatformToolset>$(DefaultPlatformToolset)_xp</PlatformToolset> <PlatformToolset Condition="'$(DefaultPlatformToolset)'!=''">$(DefaultPlatformToolset)_xp</PlatformToolset>
</PropertyGroup> </PropertyGroup>
<ImportGroup Label="PropertySheets"> <ImportGroup Label="PropertySheets">