What is the best approach upgrading from .NET 2 to 3.5?

久未见 提交于 2019-12-24 10:32:41

问题


We've been developing apps since .NET 2 release and now we are planning to upgrade to .NET 3.5. What is the best approach upgrading from .NET 2.0 to 3.5?

BTW ... the external components that we use are:
1. EntitySpace - ORM
2. Microsoft Enterprise Library
3. Microsoft ReportingViewer 9.00
4. Telerik ASP.NET Controls


回答1:


.NET Framework 3.5 is a superset of .NET Framework 2.0. You shouldn't have to do anything except re-target your build output. If any third party components require .NET 2.0 then it will have to still be installed on the target machine.




回答2:


.NET 2.0 and 3.5 Share the same version of CLR (2.0). What .NET framework 3.5 is just .NET 2.0 with a bunch of added lib for WCF, WPF, Linq ....

you shouldn't have any problems.




回答3:


As others have said, the upgrade is pretty much trivial, but you may have to change some code, because some library methods may have been deprecated. (Well, you won't have to, you'll just get warnings about it.)



来源:https://stackoverflow.com/questions/2770883/what-is-the-best-approach-upgrading-from-net-2-to-3-5

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!