Search code examples
asp.net-coredeprecated

Microsoft.AspNetCore.Session 2.2.0 is Deprecated, what is the replacement for a .Net Core 7 MVC project?


Please, would anyone know :

Microsoft.AspNetCore.Session 2.2.0 is Deprecated, what is the replacement for a .Net Core 7 MVC project ?

Thank You.

No reference for a replacement in .Nuget and could not find an answer on the web


Solution

  • I check the Package in nuget, and find the source code of Microsoft.AspNetCore.Session. I aslo find the info about this moved to https://github.com/dotnet/aspnetcore.

    This means that in the new asp.net core 7 project, the Microsoft.AspNetCore.Session package was required to be installed before. Now it is a built-in feature and no longer needs to be installed like the previous package.

    enter image description here

    enter image description here