asp.net-coresession

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


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


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