Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What is the Best Way to Migrate from .net 2.0 to 4.0
Posted

 
Share this answer
 
Change you version of the target framework from visual studio by using property pages and selecting target framework to ".Net framework 4" from the build tab.
Also set following code in web.config file.

C#
<system.web>
    <pages enableviewstatemac="false" controlrenderingcompatibilityversion="3.5" clientidmode="AutoID" />
</system.web>
 
Share this answer
 
Well you can upgrade your existing project and also create a new one so that you will be able to do some cleanup in files like web.config by removing stuff that is not needed anymore.

If your project is quite big and complex, you might want to save each step in your version control system so that if something goes wrong, you can go back...
 
Share this answer
 
Quote:
What is the Best Way to Migrate from .net 2.0 to 4.0
Skip .NET 3.0.


:rolleyes:
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900