Skip to content

Commit

Permalink
1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
harris2012 committed Mar 6, 2024
1 parent 65036e2 commit b75de22
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class BasicAuthenticationBuilder
public BasicAuthenticationBuilder AddBasicAuthenticationService<TBasicAuthenticationService>(ServiceLifetime serviceLifetime)
where TBasicAuthenticationService : class, IBasicAuthenticationService
{
services.Add(ServiceDescriptor.Describe(typeof(TBasicAuthenticationService), typeof(TBasicAuthenticationService), serviceLifetime));
services.Add(ServiceDescriptor.Describe(typeof(IBasicAuthenticationService), typeof(TBasicAuthenticationService), serviceLifetime));

return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<PackageId>Panosen.AspNetCore.Authentication.Basic</PackageId>
<Authors>HarrisZhang</Authors>
<Version>1.1.1</Version>
<Version>1.1.2</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Panosen.AspNetCore.Authentication.Basic</AssemblyName>
<RootNamespace>Panosen.AspNetCore.Authentication.Basic</RootNamespace>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class HeaderAuthenticationBuilder
public HeaderAuthenticationBuilder AddHeaderAuthenticationService<THeaderAuthenticationService>(ServiceLifetime serviceLifetime)
where THeaderAuthenticationService : class, IHeaderAuthenticationService
{
services.Add(ServiceDescriptor.Describe(typeof(THeaderAuthenticationService), typeof(THeaderAuthenticationService), serviceLifetime));
services.Add(ServiceDescriptor.Describe(typeof(IHeaderAuthenticationService), typeof(THeaderAuthenticationService), serviceLifetime));

return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<PackageId>Panosen.AspNetCore.Authentication.Header</PackageId>
<Authors>HarrisZhang</Authors>
<Version>1.1.1</Version>
<Version>1.1.2</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Panosen.AspNetCore.Authentication.Header</AssemblyName>
<RootNamespace>Panosen.AspNetCore.Authentication.Header</RootNamespace>
Expand Down

0 comments on commit b75de22

Please sign in to comment.