Armaiti.Identity
1.1.0
See the version list below for details.
dotnet add package Armaiti.Identity --version 1.1.0
NuGet\Install-Package Armaiti.Identity -Version 1.1.0
<PackageReference Include="Armaiti.Identity" Version="1.1.0" />
paket add Armaiti.Identity --version 1.1.0
#r "nuget: Armaiti.Identity, 1.1.0"
// Install Armaiti.Identity as a Cake Addin #addin nuget:?package=Armaiti.Identity&version=1.1.0 // Install Armaiti.Identity as a Cake Tool #tool nuget:?package=Armaiti.Identity&version=1.1.0
What is Armaiti.Identity?
Armaiti.Identity is a nuget package that focuses on localization features to localize identity models, identity pages and identity errors.
ArmaitiUser is a custom implementation of IdentityUser with fullname feature.
IdentityLocalizerExtensions Adds a set of common identity services to the application, including UI, localizer, token providers, and configures authentication to use identity cookies. You can add localized Identity UI in one step by using AddIdentityLocalizer extension method.
public class Startup { ... public void ConfigureServices(IServiceCollection services) { services.AddDbContext<ApplicationDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"))); // IdentityResource is a resource class that include all localization resources of Identity models, Identity pages and Identity errors. All resx files are available [here](https://github.com/aras-it/Armaiti.Identity/tree/master/_files/resources). services.AddIdentityLocalizer<ArmaitiUser, IdentityResource>(options => options.SignIn.RequireConfirmedAccount = true) .AddRoles<IdentityRole>() .AddEntityFrameworkStores<ApplicationDbContext>(); ... } ... }
IdentityErrorLocalizer is a generic service to enable localization for application facing identity errors.
IdentityModelsLocalizer is a generic service to enable localization for application facing identity models.
IdentityPagesLocalizer is a generic service to enable localization for application facing identity pages.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Armaiti.Core (>= 1.1.0)
- Microsoft.Extensions.Identity.Core (>= 3.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.