File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/IdentityServer4/src/Configuration/DependencyInjection Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ public static IIdentityServerBuilder AddIdentityServer(this IServiceCollection s
6161 public static IIdentityServerBuilder AddIdentityServer ( this IServiceCollection services , Action < IdentityServerOptions > setupAction )
6262 {
6363 services . Configure ( setupAction ) ;
64+ Console . WriteLine ( "services.AddIdentityServer 1" ) ;
6465 return services . AddIdentityServer ( ) ;
6566 }
6667
@@ -73,6 +74,7 @@ public static IIdentityServerBuilder AddIdentityServer(this IServiceCollection s
7374 public static IIdentityServerBuilder AddIdentityServer ( this IServiceCollection services , IConfiguration configuration )
7475 {
7576 services . Configure < IdentityServerOptions > ( configuration ) ;
77+ Console . WriteLine ( "services.AddIdentityServer 2" ) ;
7678 return services . AddIdentityServer ( ) ;
7779 }
7880
@@ -92,4 +94,4 @@ public static IServiceCollection AddOidcStateDataFormatterCache(this IServiceCol
9294 return services ;
9395 }
9496 }
95- }
97+ }
You can’t perform that action at this time.
0 commit comments