I've had great success with Identity Server 4 and ASP.NET Core 2.0 by referencing ASP.NET Identity and EF Quick start samples and have been running them in production successfully.
For a new project that I am working on, I was trying to use ASP.NET Core 2.2 and I noticed that all of the ASP.NET Identity related pages are now integrated into a Razor Library which can be scaffolded so that it can be customized.
My Q is: Do we still continue using the old ASP.NET Core 2.0 for integration with ASP.NET Identity and Identity Server? Or are there some examples of porting the quick start code over into the new Razor Pages paradigm of coding?
Thank you!
I'd recommend reading the following if you are upgrading from previous versions:
https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-core-2-2
Then you could evaluate whether some new features you want to achieve via migration for a IDS application .
Or are there some examples of porting the quick start code over into the new Razor Pages paradigm of coding?
You can trace this github issue : Update Quickstarts . Some changes should be modified in Quickstarts document if you are working with .net core 2.2/IdentityServer 2.3 . For example ,the default user is IdentityUser.
If you have any problem when trying to work with that , you can send feedback in that link and trace .