Reputation: 447
Every time I publish an ASP.NET 5 (Core) application my users need to login again. In ASP.NET 4 I have Session State Server, but I haven't in ASP.NET 5 Core. How can I keep users logged when I publish a new version of my application? Thanks!
Upvotes: 0
Views: 282
Reputation: 447
Finally I found this way:
https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview
And works!! Thanks!!
Upvotes: 1