From 7d304aef370b48f342893a5ad67db1ea89bea868 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sat, 13 Nov 2021 23:52:26 +0200 Subject: [PATCH] push NDB.Security.Authentication.Identity.1.0.5.nupkg --- .../AuthenticationExtensions.cs | 8 ++++---- .../NDB.Security.Authentication.Identity.csproj | 2 +- Notes.txt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/NDB.Security.Authentication.Identity/AuthenticationExtensions.cs b/NDB.Security.Authentication.Identity/AuthenticationExtensions.cs index 01c8b97..8f17d1c 100644 --- a/NDB.Security.Authentication.Identity/AuthenticationExtensions.cs +++ b/NDB.Security.Authentication.Identity/AuthenticationExtensions.cs @@ -8,13 +8,13 @@ namespace NDB.Security.Authentication.Identity { public static class AuthenticationExtensions { - public static IServiceCollection AddAuthentication(this IServiceCollection services, string identityServerBaseAddress) + public static IServiceCollection AddIdentityAuthentication(this IServiceCollection services, string identityServerBaseAddress) { - services.AddAuthentication(identityServerBaseAddress, new Services.AuthenticationOptions()); + services.AddIdentityAuthentication(identityServerBaseAddress, new Services.AuthenticationOptions()); return services; } - public static IServiceCollection AddAuthentication(this IServiceCollection services, string identityServerBaseAddress, IAuthenticationOptions authenticationOptions) + public static IServiceCollection AddIdentityAuthentication(this IServiceCollection services, string identityServerBaseAddress, IAuthenticationOptions authenticationOptions) { Validate(identityServerBaseAddress, authenticationOptions); @@ -23,7 +23,7 @@ namespace NDB.Security.Authentication.Identity services.AddSingleton(authenticationOptions); // configure authentication - AuthenticationServiceCollectionExtensions.AddAuthentication(services, "IdentityAuthentication") + services.AddAuthentication("IdentityAuthentication") .AddScheme("IdentityAuthentication", null); return services; diff --git a/NDB.Security.Authentication.Identity/NDB.Security.Authentication.Identity.csproj b/NDB.Security.Authentication.Identity/NDB.Security.Authentication.Identity.csproj index 98e283e..a4c3c56 100644 --- a/NDB.Security.Authentication.Identity/NDB.Security.Authentication.Identity.csproj +++ b/NDB.Security.Authentication.Identity/NDB.Security.Authentication.Identity.csproj @@ -7,7 +7,7 @@ https://dev.azure.com/tstanciu94/NDB Git NDB Authentication Identity - 1.0.4 + 1.0.5 diff --git a/Notes.txt b/Notes.txt index f9e823b..4e50d0f 100644 --- a/Notes.txt +++ b/Notes.txt @@ -22,7 +22,7 @@ dotnet nuget push NDB.Extensions.Swagger.1.0.2.nupkg -k ***REMOVED*** -s http:// dotnet nuget push NDB.Extensions.Http.1.0.0.nupkg -k ***REMOVED*** -s http://stawebsrv:8081/NuGetServer/nuget -dotnet nuget push NDB.Security.Authentication.Identity.1.0.4.nupkg -k ***REMOVED*** -s http://stawebsrv:8081/NuGetServer/nuget +dotnet nuget push NDB.Security.Authentication.Identity.1.0.5.nupkg -k ***REMOVED*** -s http://stawebsrv:8081/NuGetServer/nuget dotnet nuget push NDB.Extensions.Caching.1.0.1.nupkg -k ***REMOVED*** -s http://stawebsrv:8081/NuGetServer/nuget ####################################################################################################################################################### \ No newline at end of file