When adding this configuration to Startup.cs ConfigureServices method:
services.AddIdentityServer()
.AddTemporarySigningCredential()
.AddInMemoryIdentityResources(Config.GetIdentityResources())
.AddInMemoryApiResources(Config.GetApiResources())
.AddInMemoryClients(Config.GetClients())
.AddAspNetIdentity
the last bit isn't getting resolved by the compiler (.AddAspNetIdentity
You have to add a reference to IdentityServer4.AspNetIdentity:
Install-Package IdentityServer4.AspNetIdentity
Installing IdentityServer4.AspNetIdentity worked for me
Installing IdentityServer4.AspNetIdentity worked for me +1
Installing IdentityServer4.EntityFramework helps me
Installing IdentityServer4.EntityFramework Worked for me
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
You have to add a reference to IdentityServer4.AspNetIdentity:
Install-Package IdentityServer4.AspNetIdentity