csharpier
csharpier copied to clipboard
Generic field breaking
internal static Dictionary<
string,
OpenIdConnectAuthenticationOptions
> OpenIdConnectAuthenticationOptions = new Dictionary<string, OpenIdConnectAuthenticationOptions>();
Would probably be better as
internal static Dictionary<string, OpenIdConnectAuthenticationOptions>
OpenIdConnectAuthenticationOptions =
new Dictionary<string, OpenIdConnectAuthenticationOptions>();