VS 2012 - Project failed to build because of missing Toolset
Solution 1:
The builds tools for v120 (Platform Toolset = 'v120') cannot be found
Project -> Properties -> General -> Platform Toolset (as IInspectable correctly commented)
Project file contains ToolsVersion="12.0" (...) Treating the project as if it had ToolsVersion="4.0"
- Right-click project -> Unload Project
- Right-click project -> Edit (name).vcxproj
- Change this line:
<Project DefaultTargets="Build" ToolsVersion="12.0" ...
- into:
<Project DefaultTargets="Build" ToolsVersion="4.0" ...
- Change this line:
- Save, close, Right-click project -> Reload Project
Solution 2:
Try Microsoft Build Tools 2013 for building ToolsVersion="12.0" projects here:
http://www.microsoft.com/en-au/download/details.aspx?id=40760
It might help you get going.