Vefa.CustomAuth.Server
2.0.0
See the version list below for details.
dotnet add package Vefa.CustomAuth.Server --version 2.0.0
NuGet\Install-Package Vefa.CustomAuth.Server -Version 2.0.0
<PackageReference Include="Vefa.CustomAuth.Server" Version="2.0.0" />
<PackageVersion Include="Vefa.CustomAuth.Server" Version="2.0.0" />
<PackageReference Include="Vefa.CustomAuth.Server" />
paket add Vefa.CustomAuth.Server --version 2.0.0
#r "nuget: Vefa.CustomAuth.Server, 2.0.0"
#:package Vefa.CustomAuth.Server@2.0.0
#addin nuget:?package=Vefa.CustomAuth.Server&version=2.0.0
#tool nuget:?package=Vefa.CustomAuth.Server&version=2.0.0
Vefa.CustomAuth.Server
Composition package for Vefa.CustomAuth server scenarios.
This package references the ASP.NET Core integration and EF Core persistence packages together for applications that want the default server-side stack.
Typical Usage
Use this package when building an authorization server with the default ASP.NET Core endpoint layer and EF Core persistence provider.
builder.Services
.AddCustomAuth(options =>
{
options.Issuer = "https://auth.example.com";
})
.AddJwtTokenSigning();
builder.Services.AddCustomAuthEntityFrameworkCore(options =>
{
options.UseSqlite(connectionString);
});
app.MapCustomAuthEndpoints();
Notes
The EF Core provider stores client redirect URIs, post-logout redirect URIs, and allowed scopes as
relational child rows while keeping the public CustomAuthClient API as simple List<string>
properties.
For custom persistence providers, reference the lower-level packages directly instead of this composition package.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Vefa.CustomAuth.AspNetCore (>= 2.0.0)
- Vefa.CustomAuth.EntityFrameworkCore (>= 2.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.