Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use Visual Studio 2010 without breaking my 2008 apps?

Now Visual Studio 2010 is out can I use Visual Studio 2010 without breaking my 2008 apps? Can I still compile to .Net 2.0 etc?

Thanks Steven

like image 656
StevenW Avatar asked Apr 13 '10 09:04

StevenW


People also ask

Can you still download Visual Studio 2010?

You can download Visual Studio 2010 from My.VisualStudio.com. My.VisualStudio.com requires a free Dev Essentials subscription, or a Visual Studio Subscription.

What is the special features of Visual Studio 2010?

New Features and Enhancements in VS2010enhanced support for multi-targeting. support for call hierarchy of methods. support for parallel programming and debugging. support for XSLT profiling and debugging.

How do I know if Visual Studio 2010 Service Pack 1 is installed?

Help -> About . The version of the installation will be SP1Rel if SP1 is installed. Save this answer.


2 Answers

Yes, you can still target framework 2.0 in VS2010. And you can also run VS2008 alongside VS2010.

like image 138
Klaus Byskov Pedersen Avatar answered Sep 30 '22 02:09

Klaus Byskov Pedersen


Basically, yes, but there are a few things that get changed, for instance:

  • Testing projects always get converted to .NET 4.0
  • Project files get stored in "VS 2010" format.

So downgrading back to VS 2008 is not directly possible (in 99% of all cases it's still not a problem by hand-editing the files, takes just a few seconds).

However, usually, this is not an issue though. Your deployment capabilities are not limited by that. You can still target any framework.

Additionally, I found that running VS 2008 alongside 2010 made no problems at all. Including 2008 projects in a 2010 solution works fine and does not change the project file. It's very easy to slowly transmit to the new version step-by-step.

like image 25
mafu Avatar answered Sep 30 '22 04:09

mafu