I am unable to compile/build anything within Visual Studio C++ 2012 because I am getting an error that states either I have an inappropriate ToolsVersion or that the ToolSet
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"
<Project DefaultTargets="Build" ToolsVersion="12.0" ...
<Project DefaultTargets="Build" ToolsVersion="4.0" ...
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.