SiberianGuy
SiberianGuy

Reputation: 25302

Convert project from 2008 to 2010 from shell

Is there any way to convert Visual Studio project from 2008 to 2010 from shell? I need to make it during continious integration process.

Upvotes: 2

Views: 704

Answers (1)

Hans Olsson
Hans Olsson

Reputation: 55009

I think it's just devenv.exe /upgrade [solutionfile.sln] or devenv.exe /upgrade [projectfile.vcproj] for projects rather than solutions.

And just saw, apparently there's a new tool in 2010 called vcupgrade.exe that can also be used. See this blog post for details about both ways.

Upvotes: 2

Related Questions