Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error MSB8008: Specified platform toolset (v120) is not installed or invalid [duplicate]

I've downloaded a c++ project. I opened the .sln file and I tried to build the project. I got the following error:

error MSB8008: Specified platform toolset (v120) is not installed or invalid. Please make sure that a supported PlatformToolset value is selected.

I ve already checked that the platform toolset is set to v120. What is the problem here?

like image 819
Jose Ramon Avatar asked Sep 29 '14 13:09

Jose Ramon


1 Answers

Either change the platform toolset of your project to v100 (as you have installed VS2010) or install VS2013 in order to use v120.

like image 136
herohuyongtao Avatar answered Sep 20 '22 10:09

herohuyongtao