Is there any way to share all the session keys between .NET 8 and .NET Framework MVC web app without registering keys.
I'm working on migrating a legacy. Net web app to .net 8 MVC. The challenge I'm facing is there are too many session variables and many of them have dynamic keys. How can I ensure the .net 8 mvc app has access to all the session variables from the .net472 mvc app without individually registering keys.
.AddJsonSessionSerializer(options =>
{
options.RegisterKey("CoreCount");
})