WebPack.Identity.CoreLib 0.11.2

dotnet add package WebPack.Identity.CoreLib --version 0.11.2
NuGet\Install-Package WebPack.Identity.CoreLib -Version 0.11.2
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.11.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WebPack.Identity.CoreLib --version 0.11.2
#r "nuget: WebPack.Identity.CoreLib, 0.11.2"
#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.
// Install WebPack.Identity.CoreLib as a Cake Addin
#addin nuget:?package=WebPack.Identity.CoreLib&version=0.11.2

// Install WebPack.Identity.CoreLib as a Cake Tool
#tool nuget:?package=WebPack.Identity.CoreLib&version=0.11.2

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. 
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.11.2 310 4/3/2024
0.11.1 152 3/26/2024
0.10.1 2,287 1/22/2024
0.9.4 5,935 9/13/2023
0.9.3 720 9/12/2023
0.9.2 1,729 8/5/2023
0.9.1 863 8/3/2023
0.8.1 1,633 7/20/2023
0.7.5 1,019 7/5/2023
0.7.4 3,974 5/11/2023
0.7.3 910 4/26/2023
0.6.1 1,525 3/13/2023
0.5.5 2,808 1/17/2023
0.5.4 1,484 1/11/2023
0.5.3 1,135 12/12/2022
0.4.16 1,255 11/24/2022
0.4.15 1,057 11/22/2022
0.4.14 1,129 11/15/2022
0.4.13 1,793 10/24/2022
0.4.12 1,975 10/4/2022
0.4.11 1,678 8/4/2022
0.4.10 2,873 4/11/2022
0.4.9 2,486 3/27/2022
0.4.8 1,306 3/23/2022
0.4.7 1,237 3/15/2022
0.4.6 1,268 3/11/2022
0.4.5 1,100 3/3/2022
0.4.4 1,193 3/3/2022
0.4.3 1,120 2/28/2022
0.4.2 2,342 2/9/2022
0.4.1 1,511 11/12/2021
0.3.2 1,367 9/30/2021
0.3.1-beta 826 9/28/2021
0.2.2-beta 944 9/15/2021
0.1.5-beta 915 8/27/2021

Upgrade package.