views:

81

answers:

2

I want to try out the new Beta 2 of Visual Studio 2010, but I'm not sure if the installation (or the included .NET Framework 4 Beta 2) is self-contained, or if it will somehow impact my system beyond adding an entry for Visual Studio 2010 to my start menu.

The machine I want to install Visual Studio 2010 is my main development machine, so it is critical that no changes are made to Visual Studio Team System 2008 & .NET 3.5 SP1, already on the system.

Can I install Visual Studio 2010 Beta 2 without breaking my development environment?

+1  A: 

Visual Studio 2010 b2 is supposed to be safe to install side-by-side with VS 2008. There is a problem with the Silverlight 3 Toolkit, where you have to reinstall it.

ScottGu blogged about it here: http://weblogs.asp.net/scottgu/archive/2009/10/19/vs-2010-and-net-4-0-beta-2.aspx

Rune Grimstad
So I'm basically in no risk of breaking or changing my development environment? I figure that ASP.NET 4 can't be installed side-by-side with 3.5, and will override it.. Or?
roosteronacid
I have both installed on my computer and they don't seem to affect each other. Tim Heuer also says that it is safe: http://timheuer.com/blog/archive/2009/10/22/can-i-use-vs2010-for-silverlight-3-development.aspx but who knows? I can't guarantee anything :-)
Rune Grimstad
Thanks. If The Gu gives the all clear, I'm in :)
roosteronacid
Great! Good luck. Hope it doesn't kill your computer...
Rune Grimstad
Oh! Thanks! Very assuring! ;)
roosteronacid
+1  A: 

They install fine side-by-side with just the SL3 proviso as Rune says, but bear in mind that if you start opening VS2008 solutions in VS2010 it will want to migrate them and you will have problems re-opening the migrated solutions in VS2008.

You can get around this by creating separate solutions for each VS version and using the same projects/code in both, see this SO thread:

Gordon Mackie JoanMiro