Wangkanai.IdentityAdmin 0.3.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
Suggested Alternatives

Wangkanai.Federation

dotnet add package Wangkanai.IdentityAdmin --version 0.3.0
NuGet\Install-Package Wangkanai.IdentityAdmin -Version 0.3.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="Wangkanai.IdentityAdmin" Version="0.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Wangkanai.IdentityAdmin --version 0.3.0
#r "nuget: Wangkanai.IdentityAdmin, 0.3.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 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.

NuGet Badge NuGet Badge

Build Status Open Collective Patreon GitHub

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • 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 163 6/16/2023
0.2.1 136 6/7/2023
0.2.0 121 5/15/2023
0.1.0 127 5/11/2023
0.0.105 524 2/10/2020
0.0.105-alpha 338 2/10/2020
0.0.104 493 2/5/2020
0.0.103 452 2/5/2020
0.0.102-alpha 402 12/28/2019
0.0.100 564 12/28/2019
0.0.100-alpha1 355 12/25/2019
0.0.0 1,126 2/4/2018
0.0.0-alpha001 810 2/7/2018