当我右键单击项目并转到设置时,我可以清楚地看到Platform Toolset设置为Visual Studio 2015(v140)。但是,当我去编译项目时,错误提示

C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.Cpp.Platform.targets(54,5): error MSB8020: The build tools for Visual Studio 2012 (Platform Toolset = 'v110') cannot be found. To build using the v110 build tools, please install Visual Studio 2012 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".

我尝试执行建议和“重新定位解决方案”,但这无济于事。

如果打开引用.targets文件,则看不到对V140的引用。我尝试将所有引用从V110(作为实验)更改为V140,但是当我重新编译时,它只是将它们全部更改回V110并产生了相同的错误。

关于如何阻止VS定向V110的任何想法?

最佳答案

问题是我的项目引用的项目尚未包含在解决方案中。诊断输出的详细程度帮助我找到了它。

关于c++ - 错误MSB8020 : Platform Toolset set to V140, but error says it can't find V110,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36559475/

10-10 06:27