R – Building the platform code with nant and VS2008

cruisecontrolnantvisual-studio-2008

I'm using the latest nightly build, VS2008 prof trial and .NET 3.5 and
I'm getting this error

"Solution format of file 'C:\test\Project\src\project.sln' is not
supported."

Any Solution to overcome from it

Best Answer

I don't know from what you posted if this will work, but if you're trying to run the solution using a the Nant Msbuild task, you might be able to get away with substituting that for a an exec task that calls the most recent version of msbuild as an executable. For example:

<exec program="msbuild.exe" 
      basedir="C:\windows\microsoft.net\Framework\v3.5\" 
      commandline="C:\test\Project\src\project.sln"/>