Dependency Conflicts after Upgradation

Saad 1 Reputation point
2022-06-21T07:00:31.06+00:00

I've upgraded my Webform application from 4.8 .NET Framework to .NET Core 6.0. Now the main issue is that my system is not reading the .dll which were used in the older version, for e.g System.Web is unavailable in the newer version. Is there any workaround to cope up with this issue as these old dll are used on huge scale in the system.

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,165 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,254 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 56,021 Reputation points
    2022-06-21T14:30:36.26+00:00

    Webforms was not ported to asp.net core. You will need to recode.

    You should break out your business logic to .netstandard libraries, that can be shared between 4.8 and core. Then you can port you ui code. Razor pages is probably the closest to webforms.

    0 comments No comments