Bulk upgrade VS2005 solutions to VS2008 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:17:51Z http://stackoverflow.com/feeds/question/534590 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/534590/bulk-upgrade-vs2005-solutions-to-vs2008 0 Bulk upgrade VS2005 solutions to VS2008 magrok 2009-02-10T22:44:58Z 2009-09-08T03:42:12Z <p>Is it possible to bulk upgrade (many at the same time) VS 2005 projects to VS 2008.</p> <p>I know that I can open one at a time, however, I would like to select say 10 at a time to upgrade and add to a new solution.</p> http://stackoverflow.com/questions/534590/bulk-upgrade-vs2005-solutions-to-vs2008/535642#535642 1 Answer by sliderhouserules for Bulk upgrade VS2005 solutions to VS2008 sliderhouserules 2009-02-11T06:27:36Z 2009-02-11T06:27:36Z <p>There is no automatic tool that I know of (unless some commercial solution has been developed recently). But if you have a large number of projects to convert (100s) then it would probably be worth your while to write a small program to do this for you (we are programmers, after all :)). The project files are valid XML files. Just convert one or two manually, and note the differences/changes made in the project files. It doesn't change all that much when you upgrade from 2005 to 2008. Writing a program to make the same changes to a huge group of project files wouldn't be too hard.</p> http://stackoverflow.com/questions/534590/bulk-upgrade-vs2005-solutions-to-vs2008/574538#574538 1 Answer by demoncodemonkey for Bulk upgrade VS2005 solutions to VS2008 demoncodemonkey 2009-02-22T07:43:26Z 2009-02-22T07:43:26Z <p>I always use the free <a href="http://www.autohotkey.com/" rel="nofollow">AutoHotkey</a> to perform repetitive tasks.</p> <p>If you record your mouse/keyboard actions using one project you can then re-run those actions for a set of projects.</p> <p>You can edit the macro manually if some projects require any different options.</p> http://stackoverflow.com/questions/534590/bulk-upgrade-vs2005-solutions-to-vs2008/1391854#1391854 1 Answer by Casey for Bulk upgrade VS2005 solutions to VS2008 Casey 2009-09-08T03:42:12Z 2009-09-08T03:42:12Z <p>I recently came across the same problem and used a Windows Powershell script to get Visual Studio to do the upgrading for me using the <a href="http://msdn.microsoft.com/en-us/library/w15a82ay.aspx" rel="nofollow">/upgrade</a> command line switch</p> <pre><code>$slnFiles = ls C:\source -Filter *.sln -Recurse $devenv = "C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe" $i = 1 foreach ($sln in $slnFiles) { "Upgrading Solution " + $i++ + ": " + $sln.FullName &amp;$devenv /upgrade $sln.FullName } "Done!" </code></pre>