VOOZH about

URL: https://www.nuget.org/packages/Identity.Base/0.6.2

⇱ NuGet Gallery | Identity.Base 0.6.2




Identity.Base 0.6.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Identity.Base --version 0.6.2
 
 
NuGet\Install-Package Identity.Base -Version 0.6.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="Identity.Base" Version="0.6.2" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Identity.Base" Version="0.6.2" />
 
Directory.Packages.props
<PackageReference Include="Identity.Base" />
 
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 Identity.Base --version 0.6.2
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Identity.Base, 0.6.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.
#:package Identity.Base@0.6.2
 
 
#: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=Identity.Base&version=0.6.2
 
Install as a Cake Addin
#tool nuget:?package=Identity.Base&version=0.6.2
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Identity.Base

Identity.Base is a reusable Identity + OpenIddict service library for .NET 9.0. It bundles ASP.NET Core Identity, EF Core migrations, OpenIddict server configuration, MFA, external providers, and optional email integrations into ergonomic extension methods that can be hosted by any ASP.NET Core application.

Getting Started

var builder = WebApplication.CreateBuilder(args);

var identity = builder.Services.AddIdentityBase(builder.Configuration, builder.Environment);
identity
 .AddConfiguredExternalProviders() // Google / Microsoft / Apple based on configuration
 .AddExternalAuthProvider("github", auth =>
 {
 // register custom external providers here
 return auth.AddOAuth("GitHub", options => { /* ... */ });
 })
 .UseMailJetEmailSender(); // optional add-on package

var app = builder.Build();
app.UseApiPipeline(); // Add request logging middleware if desired
app.MapControllers();
app.MapApiEndpoints();
app.Run();

By default the Identity Host (or any consumer calling AddIdentityBase) applies the packaged EF Core migrations during startup. You only need to generate custom migrations when you extend the provided DbContexts. Enable Mailjet delivery by referencing Identity.Base.Email.MailJet and calling UseMailJetEmailSender().

See the repository README for the full architecture, configuration schemas, and microservice/React integration guides.

Documentation

License

Identity.Base is released under the MIT License.

Product Versions Compatible and additional computed target framework versions.
.NET net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows 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 (5)

Showing the top 5 NuGet packages that depend on Identity.Base:

Package Downloads
Identity.Base.Roles

Role-based access control primitives for Identity Base: roles, permissions, default configuration, and effective permission resolution.

Identity.Base.Organizations

Organization management layer for Identity Base, providing domain entities, EF Core integration, services, and HTTP APIs for organization membership and roles.

Identity.Base.Admin

Administrative endpoints, authorization handlers, and helpers for managing Identity Base users, roles, and audit trails.

Identity.Base.Email.MailJet

Optional Mailjet email sender integration for Identity Base hosts.

Identity.Base.Email.SendGrid

Optional SendGrid email sender integration for Identity Base hosts.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.8.10 143 6/6/2026
0.8.8 358 4/6/2026
0.8.6 1,858 3/4/2026
0.8.5 140 3/4/2026
0.8.4 731 2/9/2026
0.7.17 189 1/26/2026
0.7.16 285 1/20/2026
0.7.15 354 1/6/2026
0.7.12 167 12/30/2025
0.7.9 434 12/17/2025
0.7.7 409 12/3/2025
0.7.6 251 11/26/2025
0.7.5 385 11/14/2025
0.7.4 349 11/13/2025
0.7.3 354 11/10/2025
0.7.2 265 11/9/2025
0.7.1 188 11/9/2025
0.6.3 191 11/8/2025
0.6.2 206 11/8/2025
0.6.1 242 11/6/2025
Loading failed