• <tfoot id='eZdXl'></tfoot>
    1. <legend id='eZdXl'><style id='eZdXl'><dir id='eZdXl'><q id='eZdXl'></q></dir></style></legend>

      <small id='eZdXl'></small><noframes id='eZdXl'>

          <bdo id='eZdXl'></bdo><ul id='eZdXl'></ul>
      1. <i id='eZdXl'><tr id='eZdXl'><dt id='eZdXl'><q id='eZdXl'><span id='eZdXl'><b id='eZdXl'><form id='eZdXl'><ins id='eZdXl'></ins><ul id='eZdXl'></ul><sub id='eZdXl'></sub></form><legend id='eZdXl'></legend><bdo id='eZdXl'><pre id='eZdXl'><center id='eZdXl'></center></pre></bdo></b><th id='eZdXl'></th></span></q></dt></tr></i><div id='eZdXl'><tfoot id='eZdXl'></tfoot><dl id='eZdXl'><fieldset id='eZdXl'></fieldset></dl></div>

      2. 如何在 Visual Studio 2015 Community 上安装 Visual Studio Build Too

        How to install Visual Studio Build Tools 2010 on Visual Studio 2015 Community?(如何在 Visual Studio 2015 Community 上安装 Visual Studio Build Tools 2010?)

        <small id='DkHj7'></small><noframes id='DkHj7'>

          <bdo id='DkHj7'></bdo><ul id='DkHj7'></ul>
          <tfoot id='DkHj7'></tfoot>
          <i id='DkHj7'><tr id='DkHj7'><dt id='DkHj7'><q id='DkHj7'><span id='DkHj7'><b id='DkHj7'><form id='DkHj7'><ins id='DkHj7'></ins><ul id='DkHj7'></ul><sub id='DkHj7'></sub></form><legend id='DkHj7'></legend><bdo id='DkHj7'><pre id='DkHj7'><center id='DkHj7'></center></pre></bdo></b><th id='DkHj7'></th></span></q></dt></tr></i><div id='DkHj7'><tfoot id='DkHj7'></tfoot><dl id='DkHj7'><fieldset id='DkHj7'></fieldset></dl></div>

            • <legend id='DkHj7'><style id='DkHj7'><dir id='DkHj7'><q id='DkHj7'></q></dir></style></legend>

                    <tbody id='DkHj7'></tbody>
                1. 本文介绍了如何在 Visual Studio 2015 Community 上安装 Visual Studio Build Tools 2010?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我在 Visual Studio 2010 上创建了一个项目.当我尝试在 Visual Studio 2015 社区版上运行该项目时,出现以下错误,

                  I have a project created on Visual Studio 2010. When I try to run the project on Visual Studio 2015 Community edition I get the error below,

                  严重性代码描述项目文件行错误 MSB8020 找不到 Visual Studio 2010 的构建工具(平台工具集 = 'v100').要使用 v100 构建工具进行构建,请安装 Visual Studio 2010 构建工具.或者,您可以通过选择项目"菜单或右键单击解决方案,然后选择重定向解决方案"来升级到当前的 Visual Studio 工具.图形 C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V140Microsoft.Cpp.Platform.targets 55

                  Severity Code Description Project File Line Error MSB8020 The build tools for Visual Studio 2010 (Platform Toolset = 'v100') cannot be found. To build using the v100 build tools, please install Visual Studio 2010 build tools. Alternatively, you may upgrade to the current Visual Studio tools by selecting the Project menu or right-click the solution, and then selecting "Retarget solution". graphics C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V140Microsoft.Cpp.Platform.targets 55

                  当我尝试使用 Visual Studio 2015 构建工具构建它时,我遇到了大约 1500 多个错误.

                  And when I tried to build it with Visual Studio 2015 Build Tools I encountered about 1500+ errors.

                  有什么办法可以让项目顺利进行吗?

                  Is there any way to make the project work?

                  推荐答案

                  如果您无法安装 VS2010,适用于 Windows 7 的 Windows SDK 包含所需的编译器工具 (v100),您实际上可以跳过安装 SDK 本身而只安装编译器工具、头文件和库.请注意,Windows SDK 中包含的编译器与 VS2010 相同,但 VS2010 SP1 的编译器要更新一些.如果需要,还需要安装 Microsoft Visual C++ 2010 Service Pack 1 CompilerWindows SDK 7.1 的更新.但是请注意,如果您安装了这些,以后如果您决定安装 VS2010,您可能会遇到问题,安装程序中存在错误,需要您按照严格的顺序安装组件.另外,如果你的代码使用 MFC 或 ATL,则必须安装 VS2010,安装 Windows SDK 是不够的.

                  If you can't install VS2010, Windows SDK for Windows 7 contains needed compiler tools (v100), you may actually skip installing the SDK itself and install only the compiler tools, headers and libs. Please note, that the compiler included in Windows SDK is the same that VS2010 has, but VS2010 SP1 has a bit newer compiler. If you need that, you'll also need to install Microsoft Visual C++ 2010 Service Pack 1 Compiler Update for the Windows SDK 7.1. But be aware, that if you install these, you may have issues later if you decide to install VS2010, there are bugs in installer that requires you to install components in strict order. Also, if your code uses MFC or ATL you must install VS2010, installing Windows SDK will not be enough.

                  这篇关于如何在 Visual Studio 2015 Community 上安装 Visual Studio Build Tools 2010?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Constructor initialization Vs assignment(构造函数初始化 Vs 赋值)
                  Is a `=default` move constructor equivalent to a member-wise move constructor?(`=default` 移动构造函数是否等同于成员移动构造函数?)
                  Has the new C++11 member initialization feature at declaration made initialization lists obsolete?(声明时新的 C++11 成员初始化功能是否使初始化列表过时了?)
                  Order of constructor call in virtual inheritance(虚继承中构造函数调用的顺序)
                  How to use sfinae for selecting constructors?(如何使用 sfinae 选择构造函数?)
                  Initializing a union with a non-trivial constructor(使用非平凡的构造函数初始化联合)

                        <bdo id='eHHc9'></bdo><ul id='eHHc9'></ul>

                        <tfoot id='eHHc9'></tfoot>
                          <tbody id='eHHc9'></tbody>

                        1. <small id='eHHc9'></small><noframes id='eHHc9'>

                        2. <legend id='eHHc9'><style id='eHHc9'><dir id='eHHc9'><q id='eHHc9'></q></dir></style></legend>

                            <i id='eHHc9'><tr id='eHHc9'><dt id='eHHc9'><q id='eHHc9'><span id='eHHc9'><b id='eHHc9'><form id='eHHc9'><ins id='eHHc9'></ins><ul id='eHHc9'></ul><sub id='eHHc9'></sub></form><legend id='eHHc9'></legend><bdo id='eHHc9'><pre id='eHHc9'><center id='eHHc9'></center></pre></bdo></b><th id='eHHc9'></th></span></q></dt></tr></i><div id='eHHc9'><tfoot id='eHHc9'></tfoot><dl id='eHHc9'><fieldset id='eHHc9'></fieldset></dl></div>