我是靠谱客的博主 含糊玫瑰,最近开发中收集的这篇文章主要介绍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 ,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

状况:

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版本对应的值修改如下对应的值:

  <Project        DefaultTargets="Build"   ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

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

  <Project        ToolsVersion="12.0"        xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

3,修改<PlatformToolset>v120</PlatformToolset>

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

 

最后

以上就是含糊玫瑰为你收集整理的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 的全部内容,希望文章能够帮你解决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 所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部