View Single Post
  #2  
Old 08-18-2006, 03:05 PM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,003
The first error occurs because VS.NET 2003 does not support building of individual web projects by their local filename.

The second error occurs because you have both VS.NET 2003 and VS 2005 installed, and when building individual web projects (via their http address), the Make VS.NET action doesn't parse the project file for the version, so it invokes the most-recently-installed version of VS (2005 in this case), and VS 2005 refuses to build the project file because it is for an older version of VS. You can work around this by specifying the full path for the VS 2003 version of devenv.com (typically C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE\devenv.com) in the Override field on the Options tab of the Make VS.NET action (or create a macro with that value and reference it in that field).
Reply With Quote