Armaiti.Identity 1.1.0

There is a newer version of this package available.
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
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="Armaiti.Identity" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Armaiti.Identity --version 1.1.0
#r "nuget: Armaiti.Identity, 1.1.0"
#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 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.2 549 5/4/2020
1.1.1 440 5/4/2020
1.1.0 492 1/13/2020
1.0.0 682 1/5/2020