Does anyone know a fast way of batch migrating VS 2008 Solutions/Projects to VS 2010? A simple test using th开发者_运维知识库e Migration Wizard shows that amongst others, the ToolVersion attribute is automatically changed to 4.0, the NoWarn key gets new exceptions added and a couple of other things...
If there is no other way, I will have to do it manually using the Migration Wizard. However, I'd like to have a simpler way... since I got a lot of projects...
You can use the command line to skip the wizard window. Just open the Visual Studio 2010 Command prompt and type:
devenv /Upgrade \Path\To\Solution.sln
That will upgrade all of the projects in your solution using the default settings.
精彩评论