Upgrade .Net Framework 4.7.2 Solution to .Net 8

Samuel David

Member
Joined
Nov 29, 2022
Messages
9
Programming Experience
Beginner
Hello All,



In My webforms project, my Solution having multiple projects which are developed in .Net Framework 4.7.2 and my requirement is to upgrade current solution to .Net 8. Can some one please suggest me how can i achieve this.



Appreciate your help.



Thanks,

Sam
 
Take full advantage of source control and make incremental changes.

You might have lucked out by choosing WebForms since that didn't change as dramatically as MVC did.
 
You might have lucked out by choosing WebForms since that didn't change as dramatically as MVC did.

Microsoft provides an upgrade assistant but it does not cover Web Forms, although it does cover MVC.
 
There is no one-click solution to this. It's possible that you may just have to create a new project targeting the desired framework and then import items from the old project. You should start by reading this page, although it does not cover Web Forms explicitly, so that may make things harder.
 
Back
Top Bottom