I'm currently using the following packages for some shared code:
Microsoft.AspNetCore.Authentication.Cookies
Microsoft.AspNetCore.Mvc.Razor
Microsoft.AspNetCore.Mvc.ViewFeatures
They have now been deprecated, and I cannot find a single reference to the one that I should be replacing them with.
Any help would be great.
ViewFeatures, it looks like it's built-in now, so you can just drop the package as part of a .NET 6 upgrade. See learn.microsoft.com/en-us/answers/questions/915139/…. Could be the same for the others.