You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 20, 2018. It is now read-only.
I think this should be safe to do in 2.1, but we might want to consider doing something like this in RTM (as this is really finishing what we started in 651)
services.AddIdentityCore<TUser>()// UserManager related servives.AddRoles<TRole>()// RoleManager related services.AddEntityFrameworkStores<TContext>(storeOptions =>{})// All stores needed for all managers, optional schema tweaking.AddSignInManager()// SignInManager related stuff
Would be equivalent to today's (which we would still support):