Reputation: 25302
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
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