What should I look out for when migrating a project from VS2003 to VS2005 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:33:55Z http://stackoverflow.com/feeds/question/417295 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/417295/what-should-i-look-out-for-when-migrating-a-project-from-vs2003-to-vs2005 0 What should I look out for when migrating a project from VS2003 to VS2005 Eppz 2009-01-06T16:53:15Z 2009-03-27T21:04:08Z <p>In the very near future I'll be migrating some web applications from VS2003 projects to VS2005 projects.</p> <p>What should I watch out for?</p> <p>Anyone done this in the past and have it go bad?</p> <p>How much time should I expect it will take to migrate a project?</p> <p>I know this is more than one question, but please provide your experiences with anything relating to migrating projects from VS2003 to VS2005.</p> <p>Thank-you</p> <p><strong><em>EDIT</em></strong></p> <p>The types of projects I will be migrating are Web Applications written in Visual Basic.</p> http://stackoverflow.com/questions/417295/what-should-i-look-out-for-when-migrating-a-project-from-vs2003-to-vs2005/417312#417312 2 Answer by darasd for What should I look out for when migrating a project from VS2003 to VS2005 darasd 2009-01-06T16:58:03Z 2009-01-06T16:58:03Z <p>Be aware of the differences between a Web Site Project and a Web Application Project.</p> http://stackoverflow.com/questions/417295/what-should-i-look-out-for-when-migrating-a-project-from-vs2003-to-vs2005/417698#417698 3 Answer by ChrisA for What should I look out for when migrating a project from VS2003 to VS2005 ChrisA 2009-01-06T18:52:36Z 2009-01-06T18:52:36Z <p>Do you absolutely have to go to VS2005 rather than straight to VS2008?</p> <p>Even though Web Application Projects were implemented for VS2005, first with an add-on, and later with a service pack, IIRC, upgrading VS2003 web projects was extremely flaky.</p> <p>We had a dozen or so production web sites (all written in VB.NET) running ASP.NET 1.1, and wanted to move forward... it proved a complete nightmare (even with Web Application Projects installed), and we gave up since we didn't have the resource available to persevere.</p> <p>Then VS2008 came along, and I had another go.</p> <p>Bingo, no problem at all. The project upgrade wizard just ran, there were a few trivial code fixes, and it just worked.</p> <p>Straight from VS2003 to VS2008 in about an hour. All the sites ran off the same code base, and upgrading was as simple as copying over the folder, and changing the IIS management tool so that it specified ASP.NET 2.0.</p> <p>I imagine you can guess what my recommendation would be!!</p> http://stackoverflow.com/questions/417295/what-should-i-look-out-for-when-migrating-a-project-from-vs2003-to-vs2005/417730#417730 1 Answer by David for What should I look out for when migrating a project from VS2003 to VS2005 David 2009-01-06T19:07:45Z 2009-01-07T13:17:09Z <p>I really would go straight to VS2008. You can 'throttle back' your project so that it 'only' uses .NET 2.0, if that's a requirement.</p> <p>As far as what to watch out for - ASP.NET 1.1 and ASP.NET 2.0 are very different creatures, I've discovered. ASP.NET 1.1 let you put objects on a web page much the way you would drop buttons, labels and text boxes on a desktop forms application. This is no longer true in 2.0. I had a LOT of self-education coming to me when I started working on my current project in that I really had to learn how to lay out presentation-layer stuff with ASP tags (divs, style sheets, etc). The code-behind was still the same - handled better in fact. This all depends on what kind of web projects you're migrating and how they were written in the first place.</p> http://stackoverflow.com/questions/417295/what-should-i-look-out-for-when-migrating-a-project-from-vs2003-to-vs2005/497249#497249 -1 Answer by Eppz for What should I look out for when migrating a project from VS2003 to VS2005 Eppz 2009-01-30T21:08:29Z 2009-01-30T21:08:29Z <p>To Sum up everyones answers,</p> <p>I should look out for the following:</p> <p>Be aware of the differences between a Web Site Project and a Web Application Project. - darasd</p> <p>Go straight to VS2008 if available - ChrisA, David</p>