Q: 用Visual Studio(2010, 2012, 2013, 2015)低版本打开高版本创建的工程时,编译运行工程出错

状况:

error MSB8020: The builds tools for v110 (Platform Toolset = 'v110') cannot be found. To build using the v110 build tools, either click the Project menu or right-click the solution, and then select "Update VC++ Projects..."

 

 

A: 1,打开工程中的”xxx.sln”文件,使用当前VisualStudio版本对应的值修改如下对应的值:

   MicrosoftVisual Studio Solution File, Format Version 12.00    

   #Visual Studio 2013           //      ‘#’用于注释

   VisualStudioVersion = 12.0.21005.1

   MinimumVisualStudioVersion = 10.0.40219.1

 

2,打开工程中的”xxx.vcxproj”文件, 使用当前VisualStudio版本对应的值修改如下对应的值:

 

  打开工程中的”xxx.filters”文件, 使用当前VisualStudio版本对应的值修改如下对应的值:

 

3,修改v120

   可以从Visual Studio “项目->属性->配置属性->平台工具集”使用当前版本自带的工具值

 

你可能感兴趣的:(开发过程中填坑记)