How do I get rid of this error, I am using Visual Studio 2008 because 2010 wouldn't open some of my VB Projects.
views:
1323answers:
1
+4
A:
A VS2008 project file starts out with
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
where the ToolsVersion indicates the .net framework tools version. VS2010 uses .net 4, so clearly has made the corresponding change in its tools version.
I would expect that opening your project files in Notepad and resetting the tools version to 3.5 will clear that issue. Whether there are other backwards incompatibilities lurking, I couldn't say.
Steve Gilham
2009-12-07 16:23:07
I can confirm this was the case for me.
ddc0660
2010-05-24 19:00:10