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.
#:package WebPack.Identity.CoreLib@0.12.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=WebPack.Identity.CoreLib&version=0.12.1
                    
Install as a Cake Addin
#tool nuget:?package=WebPack.Identity.CoreLib&version=0.12.1
                    
Install 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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 19,628 6/20/2024
0.11.2 4,381 4/3/2024
0.11.1 2,081 3/26/2024
0.10.1 2,624 1/22/2024
0.9.4 11,595 9/13/2023
0.9.3 811 9/12/2023
0.9.2 1,810 8/5/2023
0.9.1 943 8/3/2023
0.8.1 1,717 7/20/2023
0.7.5 1,117 7/5/2023
0.7.4 5,421 5/11/2023
0.7.3 1,004 4/26/2023
0.6.1 1,634 3/13/2023
0.5.5 2,902 1/17/2023
0.5.4 1,581 1/11/2023
0.5.3 1,232 12/12/2022
0.4.16 1,358 11/24/2022
0.4.15 1,149 11/22/2022
0.4.14 1,232 11/15/2022
0.4.13 1,920 10/24/2022
0.4.12 2,071 10/4/2022
0.4.11 1,787 8/4/2022
0.4.10 2,999 4/11/2022
0.4.9 2,626 3/27/2022
0.4.8 1,436 3/23/2022
0.4.7 1,347 3/15/2022
0.4.6 1,413 3/11/2022
0.4.5 1,222 3/3/2022
0.4.4 1,307 3/3/2022
0.4.3 1,238 2/28/2022
0.4.2 3,075 2/9/2022
0.4.1 1,652 11/12/2021
0.3.2 1,505 9/30/2021
0.3.1-beta 937 9/28/2021
0.2.2-beta 1,090 9/15/2021
0.1.5-beta 1,025 8/27/2021

Upgrade package.