Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iczp/iczpnet.openiddict
abp openiddict management
https://github.com/iczp/iczpnet.openiddict
abp abpvnext openid-connect
Last synced: 8 days ago
JSON representation
abp openiddict management
- Host: GitHub
- URL: https://github.com/iczp/iczpnet.openiddict
- Owner: Iczp
- Created: 2024-07-10T03:51:45.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-07-19T04:05:25.000Z (4 months ago)
- Last Synced: 2024-10-29T03:07:44.318Z (15 days ago)
- Topics: abp, abpvnext, openid-connect
- Language: C#
- Homepage: https://vvll.net
- Size: 307 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IczpNet.OpenIddict
An abp module that provides standard tree structure entity implement.
### Create project by Abp Cli
```bash
abp new IczpNet.OpenIddict -t module --no-ui -v 7.3.0
```Add Moudule Volo.OpenIddict
```bash
abp add-module Volo.OpenIddict
```# FluentValidation 集成
```bash
abp add-package Volo.Abp.FluentValidation
```### Build
```
dotnet build --configuration Release
```https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-build
### Public to Nuget.org
```
dotnet nuget push "src/*/bin/Release/*0.1.1.nupkg" --skip-duplicate -k {APIKEY} --source https://api.nuget.org/v3/index.json
```## Usage
### Api : `xxx.HttpApi.Host/xxHttpApiHostModule`
```c#
Configure(options =>
{
options.ConventionalControllers.Create(typeof(OpenIddictApplicationModule).Assembly);
});
```