WebPack.Identity.CoreLib 0.12.1

dotnet add package WebPack.Identity.CoreLib --version 0.12.1
                    
NuGet\Install-Package WebPack.Identity.CoreLib -Version 0.12.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WebPack.Identity.CoreLib" Version="0.12.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WebPack.Identity.CoreLib" Version="0.12.1" />
                    
Directory.Packages.props
<PackageReference Include="WebPack.Identity.CoreLib" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add WebPack.Identity.CoreLib --version 0.12.1
                    
#r "nuget: WebPack.Identity.CoreLib, 0.12.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=WebPack.Identity.CoreLib&version=0.12.1
                    
Install WebPack.Identity.CoreLib as a Cake Addin
#tool nuget:?package=WebPack.Identity.CoreLib&version=0.12.1
                    
Install WebPack.Identity.CoreLib as a Cake Tool

WebPack.Identity.CoreLib

Identity Pack For ASP.NET Core

use Basic Authentication

Add IBasicAuthenticationService

public class HogeBasicAuthenticationService : IBasicAuthenticationService {
    //Use ORMIntegrator(ctor Injection...)
    readonly SqlManager<HogeContext> _sqlManager;

    public HogeBasicAuthenticationService(SqlManager<HogeContext> sqlManager) =>
        _sqlManager = sqlManager;

    public async ValueTask<(bool authenticateResult, Claim[] authenticatedUserClaims)> AuthenticateAsync(string username, string password) {
        if (await _sqlManager.DbContext.MstHoges.FirstOrDefaultAsync(e => e.UserId == username && e.Password == password) is not MstPartner authenticatedUser) {
            return (authenticateResult: false, authenticatedUserClaims: System.Array.Empty<Claim>());
        }

        return (
            true,
            new[] {
                new Claim(ClaimTypes.NameIdentifier, authenticatedUser.PartnerId.ToString()),
                new Claim(ClaimTypes.Name, authenticatedUser.UserId),
                new Claim(ClaimTypes.Email, authenticatedUser.Email),
                // Extend Claim Setting Point...
            }
        );
    }
}

Add Service(And HogeBasicAuthenticationService DI Setting)

public void ConfigureServices(IServiceCollection services) {
    //...

    services.AddBasicAuthenticationService<HogeBasicAuthenticationService>();
}

Configure

public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
    // Always write UseAuthentication before UseAuthorization
    app.UseAuthentication();

    app.UseAuthorization();
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on WebPack.Identity.CoreLib:

Package Downloads
Swagger.Extensions.DependencyInjection

For ASP.NET Core Swagger Extension; Include Default Builder;

WebPack.Identity.Gcp.CoreLib

ASP.NET Core Identity Easy setting Package Case Gcp Way.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.12.1 14,463 10 months ago
0.11.2 3,994 4/3/2024
0.11.1 1,844 3/26/2024
0.10.1 2,594 1/22/2024
0.9.4 10,615 9/13/2023
0.9.3 782 9/12/2023
0.9.2 1,780 8/5/2023
0.9.1 912 8/3/2023
0.8.1 1,682 7/20/2023
0.7.5 1,081 7/5/2023
0.7.4 5,212 5/11/2023
0.7.3 968 4/26/2023
0.6.1 1,598 3/13/2023
0.5.5 2,865 1/17/2023
0.5.4 1,542 1/11/2023
0.5.3 1,195 12/12/2022
0.4.16 1,321 11/24/2022
0.4.15 1,112 11/22/2022
0.4.14 1,196 11/15/2022
0.4.13 1,863 10/24/2022
0.4.12 2,029 10/4/2022
0.4.11 1,741 8/4/2022
0.4.10 2,952 4/11/2022
0.4.9 2,581 3/27/2022
0.4.8 1,388 3/23/2022
0.4.7 1,300 3/15/2022
0.4.6 1,365 3/11/2022
0.4.5 1,164 3/3/2022
0.4.4 1,252 3/3/2022
0.4.3 1,191 2/28/2022
0.4.2 2,910 2/9/2022
0.4.1 1,587 11/12/2021
0.3.2 1,453 9/30/2021
0.3.1-beta 871 9/28/2021
0.2.2-beta 1,037 9/15/2021
0.1.5-beta 970 8/27/2021

Upgrade package.