Bulk upgrade VS2005 solutions to VS2008 - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:17:51Zhttp://stackoverflow.com/feeds/question/534590http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/534590/bulk-upgrade-vs2005-solutions-to-vs20080Bulk upgrade VS2005 solutions to VS2008magrok2009-02-10T22:44:58Z2009-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#5356421Answer by sliderhouserules for Bulk upgrade VS2005 solutions to VS2008sliderhouserules2009-02-11T06:27:36Z2009-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#5745381Answer by demoncodemonkey for Bulk upgrade VS2005 solutions to VS2008demoncodemonkey2009-02-22T07:43:26Z2009-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#13918541Answer by Casey for Bulk upgrade VS2005 solutions to VS2008Casey2009-09-08T03:42:12Z2009-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
&$devenv /upgrade $sln.FullName
}
"Done!"
</code></pre>