Need build of .Net 5 compatible Upgrade Assistant #1605
Unanswered
AZDeveloper777
asked this question in
Q&A
Replies: 1 comment
-
To upgrade your .NET Framework 4 application to .NET 5: Install .NET 5 SDK: Download and install it from here. Update Project File: Change your .csproj file to target .NET 5: net5.0 Use Third-Party Upgrade Tool: Run the .NET Framework 4 to .NET 5 upgrade tool provided by your third-party control vendor. Resolve Compatibility Issues: Check for deprecated APIs or package compatibility issues after the upgrade. Test the Application: Make sure everything works, especially third-party controls. Once on .NET 5, you can then upgrade to .NET 8 using the appropriate tool. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a .Net Framework 4 application that I need to upgrade to .Net 5 as an intermediate step to .Net 8. I have to go to .Net 5 FIRST because the 3rd party controls I'm using in my WinForms app require me to use their .Net Framework 4 to .Net 5 upgrade tool and THEN use the .Net 5 to .Net 8 tool.
I looked around this repo, but I'm just not seeing a way to get that specific build.
Please help !
Beta Was this translation helpful? Give feedback.
All reactions