Wangkanai.IdentityAdmin
0.3.0
Prefix Reserved
dotnet add package Wangkanai.IdentityAdmin --version 0.3.0
NuGet\Install-Package Wangkanai.IdentityAdmin -Version 0.3.0
<PackageReference Include="Wangkanai.IdentityAdmin" Version="0.3.0" />
paket add Wangkanai.IdentityAdmin --version 0.3.0
#r "nuget: Wangkanai.IdentityAdmin, 0.3.0"
// Install Wangkanai.IdentityAdmin as a Cake Addin #addin nuget:?package=Wangkanai.IdentityAdmin&version=0.3.0 // Install Wangkanai.IdentityAdmin as a Cake Tool #tool nuget:?package=Wangkanai.IdentityAdmin&version=0.3.0
<img src="https://raw.githubusercontent.com/wangkanai/IdentityAdmin/main/asset/Identity-admin-logo.svg?sanitize=true" width="650" alt="IdentityAdmin" />
(Alpha Development)
IdentityAdmin is a free, open source that provides the necessary administration portal for managing IdentityServer to manage clients and users. IdentityAdmin will allow easier implementation of IdentityServer whom provides no administration tool for managing its configuration.
Please show some me love and click on ⭐ This help motivate me to continue on developing the project.
Overview
Installation of IdentityAdmin
PM> install-package Wangkanai.IdentityAdmin
Implement of the library into your web application is done by configuring the Startup.cs
by adding the IdentityAdmin service in the ConfigureServices
method.
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews();
services.AddIdentityServer()
.AddAspNetIdentity<ApplicationUser>();
services.AddIdentityAdmin<ApplicationUser>();
}
Adding the IdentityAdmin middleware to the pipeline. The IdentityAdmin middleware is enabled in the Configure
method of Startup.cs file.
public void Configure(IApplicationBuilder app)
{
app.UseIdentityServer();
app.UseIdentityAdmin();
app.UseEndpoints(endpoints => endpoints.MapDefaultControllerRoute());
}
Directory Structure
src
- The source code of this project lives here.test
- The unit tests code of this project to valid that everything pass specs.sample
- The sample code of this project lives here.
Contributing
All contribution are welcome, please contact the author.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
-
net7.0
- No dependencies.
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 | |
---|---|---|---|
0.3.0 | 201 | 6/16/2023 | |
0.2.1 | 164 | 6/7/2023 | |
0.2.0 | 151 | 5/15/2023 | |
0.1.0 | 151 | 5/11/2023 | |
0.0.105 | 548 | 2/10/2020 | |
0.0.105-alpha | 365 | 2/10/2020 | |
0.0.104 | 517 | 2/5/2020 | |
0.0.103 | 481 | 2/5/2020 | |
0.0.102-alpha | 432 | 12/28/2019 | |
0.0.100 | 592 | 12/28/2019 | |
0.0.100-alpha1 | 379 | 12/25/2019 | |
0.0.0 | 1,160 | 2/4/2018 | |
0.0.0-alpha001 | 839 | 2/7/2018 |