views:

22

answers:

1

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

+1  A: 

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.

ho1
Thank you! /upgrade is what i was searching for (whether vcupgrade is C++ specific)
Idsa