public static AuthenticationBuilder AddAbpOpenIdConnect(this AuthenticationBuilder builder, Action <OpenIdConnectOptions> configureOptions)
 => builder.AddAbpOpenIdConnect(OpenIdConnectDefaults.AuthenticationScheme, configureOptions);
 public static AuthenticationBuilder AddAbpOpenIdConnect(this AuthenticationBuilder builder, string authenticationScheme, Action <OpenIdConnectOptions> configureOptions)
 => builder.AddAbpOpenIdConnect(authenticationScheme, OpenIdConnectDefaults.DisplayName, configureOptions);
 public static AuthenticationBuilder AddAbpOpenIdConnect(this AuthenticationBuilder builder)
 => builder.AddAbpOpenIdConnect(OpenIdConnectDefaults.AuthenticationScheme, _ => { });