@@ -50,7 +50,8 @@ public static class <%= name %>AuthenticationExtensions
5050 /// <param name="configuration">The delegate used to configure the <%= name %> options.</param>
5151 /// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
5252 public static AuthenticationBuilder Add < %= name % > (
53- [ NotNull ] this AuthenticationBuilder builder , [ NotNull ] string scheme ,
53+ [ NotNull ] this AuthenticationBuilder builder ,
54+ [ NotNull ] string scheme ,
5455 [ NotNull ] Action < < %= name % > AuthenticationOptions > configuration)
5556 {
5657 return builder . Add < %= name % > ( scheme , < %= name % > AuthenticationDefaults . DisplayName , configuration ) ;
@@ -67,7 +68,8 @@ public static class <%= name %>AuthenticationExtensions
6768 /// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
6869 public static AuthenticationBuilder Add < %= name % > (
6970 [ NotNull ] this AuthenticationBuilder builder ,
70- [ NotNull ] string scheme , [ CanBeNull ] string caption ,
71+ [ NotNull ] string scheme ,
72+ [ CanBeNull ] string caption ,
7173 [ NotNull ] Action < < %= name % > AuthenticationOptions > configuration)
7274 {
7375 return builder . AddOAuth << %= name % > AuthenticationOptions , < %= name % > AuthenticationHandler > ( scheme , caption , configuration ) ;
0 commit comments