@@ -50,7 +50,8 @@ public static class <%= name %>AuthenticationExtensions
50
50
/// <param name="configuration">The delegate used to configure the <%= name %> options.</param>
51
51
/// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
52
52
public static AuthenticationBuilder Add < %= name % > (
53
- [ NotNull ] this AuthenticationBuilder builder , [ NotNull ] string scheme ,
53
+ [ NotNull ] this AuthenticationBuilder builder ,
54
+ [ NotNull ] string scheme ,
54
55
[ NotNull ] Action < < %= name % > AuthenticationOptions > configuration)
55
56
{
56
57
return builder . Add < %= name % > ( scheme , < %= name % > AuthenticationDefaults . DisplayName , configuration ) ;
@@ -67,7 +68,8 @@ public static class <%= name %>AuthenticationExtensions
67
68
/// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
68
69
public static AuthenticationBuilder Add < %= name % > (
69
70
[ NotNull ] this AuthenticationBuilder builder ,
70
- [ NotNull ] string scheme , [ CanBeNull ] string caption ,
71
+ [ NotNull ] string scheme ,
72
+ [ CanBeNull ] string caption ,
71
73
[ NotNull ] Action < < %= name % > AuthenticationOptions > configuration)
72
74
{
73
75
return builder . AddOAuth << %= name % > AuthenticationOptions , < %= name % > AuthenticationHandler > ( scheme , caption , configuration ) ;
0 commit comments