Can I safely move my project to .NET 4.0?

Posted by Decker on Stack Overflow See other posts from Stack Overflow or by Decker
Published on 2010-04-29T19:38:57Z Indexed on 2010/04/29 20:07 UTC
Read the original article Hit count: 227

Filed under:
|
|

I've migrated my project to VS2010 but have not yet targeted .NET 4.0. It's currently targeting 3.5 SP1 (and CLR 2). The project relies on several third party components -- mostly open source -- that were presumably built against the 2.0 CLR.

Can I simply retarget my project to the 4.0 runtime? Or do I have to get new versions of all the referenced assemblies on which it depends?

I've read a little about the new in-process side-by-side feature of .NET 4.0, but I don't think it applies here (the example I read was about two different .NET plug ins to an office application). My situation is different. My solution directly references assemblies and I wouldn't think side-by-side applies -- unless I don't understand its purpose.

TIA

© Stack Overflow or respective owner

Related posts about .NET

Related posts about clr