无法识别工具版本3.5 (the tool version 3.5 is unrecognized)
折腾了整整一个晚上,当我创建新项目的时候,一直得到标题所示错误。
开始一直以为是vs 2008的问题,因为我装了vs 2008的中文,英文版,还装vs c# 和web developer 的express版本。
在装了中文版本之后,一直提示的是“无法识别工具版本3.5”,到google上搜索,也搜索不出来什么东西,
很郁闷。
迫于无奈之下,删除了所有的vs 2008版本
然后只安装了vs 2008的英文版本,本以为这样就可以解决问题了,但是还是得到了同样的错误。
不过这次的错误是英文的,所以就到Google搜索,哈哈,得到了解决办法,很爽。
see below explain:
If you have error creating project and receive Unable read project file [full filename]: The tools version "3.5" is unrecognised, then the following should help to solve it.
Open up your Window registry :-
And make the following changes....
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSBuild] -- 增加MSBuild节点(项),下同
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSBuild\3.5]
"DefaultToolsVersion"="2.0" -- 增加字符串
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSBuild\ToolsVersions]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSBuild\ToolsVersions\2.0]
"MSBuildToolsPath"="C:\\WINDOWS\\Microsoft.NET\\Framework\\v2.0.50727\\"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSBuild\ToolsVersions\3.5]
"MSBuildToolsPath"="C:\\WINDOWS\\Microsoft.NET\\Framework\\v3.5\\"
原文地址:http://mitzen.blogspot.com/2009/01/vs-2008-create-project-tool-version.html