Franz.Common.SSO
1.2.62
See the version list below for details.
dotnet add package Franz.Common.SSO --version 1.2.62
NuGet\Install-Package Franz.Common.SSO -Version 1.2.62
<PackageReference Include="Franz.Common.SSO" Version="1.2.62" />
paket add Franz.Common.SSO --version 1.2.62
#r "nuget: Franz.Common.SSO, 1.2.62"
// Install Franz.Common.SSO as a Cake Addin #addin nuget:?package=Franz.Common.SSO&version=1.2.62 // Install Franz.Common.SSO as a Cake Tool #tool nuget:?package=Franz.Common.SSO&version=1.2.62
Franz.Common.SSO
A library within the Franz Framework designed to provide streamlined support for Single Sign-On (SSO) using ASP.NET Core Identity and Entity Framework Core. This package includes interfaces and implementations for managing SSO providers and configuring SSO services.
Features
- SSO Provider Management:
ISsoProvider
interface for defining custom SSO providers.GenericSSOProvider
andGenericSSOManager
for generic implementations of SSO workflows.
- Service Registration:
SsoServiceRegistration
to simplify the integration of SSO services into your application.
- ASP.NET Core Identity Integration:
- Full support for ASP.NET Core Identity and Entity Framework Core for identity management.
Version Information
- Current Version: 1.2.62
- Part of the private Franz Framework ecosystem.
Dependencies
This package relies on the following dependencies:
- Microsoft.AspNetCore.Identity (2.2.0): Provides core Identity functionality.
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (8.0.0): Adds Entity Framework Core integration for ASP.NET Identity.
Additionally, it integrates with:
- Franz.Common.EntityFramework: Provides foundational Entity Framework utilities.
Installation
From Private Azure Feed
Since this package is hosted privately, configure your NuGet client:
dotnet nuget add source "https://your-private-feed-url" \
--name "AzurePrivateFeed" \
--username "YourAzureUsername" \
--password "YourAzurePassword" \
--store-password-in-clear-text
Install the package:
dotnet add package Franz.Common.SSO --version 1.2.62
Usage
1. Register SSO Services
Use SsoServiceRegistration
to register SSO services in your application:
using Franz.Common.SSO.Extensions;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddSsoServices(options =>
{
options.DefaultProvider = "YourSSOProvider";
});
}
}
2. Implement a Custom SSO Provider
Create a custom implementation of ISsoProvider
:
using Franz.Common.SSO.Interfaces;
public class CustomSSOProvider : ISsoProvider
{
public Task<string> AuthenticateAsync(string token)
{
// Custom authentication logic
return Task.FromResult("AuthenticatedUserId");
}
}
3. Use the GenericSSOManager
Leverage the GenericSSOManager
for managing SSO workflows:
using Franz.Common.SSO;
public class SsoService
{
private readonly GenericSSOManager _ssoManager;
public SsoService(GenericSSOManager ssoManager)
{
_ssoManager = ssoManager;
}
public async Task<string> AuthenticateUserAsync(string token)
{
return await _ssoManager.AuthenticateAsync(token);
}
}
Integration with Franz Framework
The Franz.Common.SSO package integrates seamlessly with the Franz Framework, enabling secure and efficient single sign-on functionality for distributed systems. Use it alongside other Franz packages for enhanced identity and access management.
Contributing
This package is part of a private framework. Contributions are limited to the internal development team. If you have access, follow these steps:
- Clone the repository.
- Create a feature branch.
- Submit a pull request for review.
License
This library is licensed under the MIT License. See the LICENSE
file for more details.
Changelog
Version 1.2.62
- Added
ISsoProvider
for custom SSO provider implementation. - Introduced
GenericSSOProvider
andGenericSSOManager
for generic SSO workflows. - Integrated with ASP.NET Core Identity and Entity Framework Core.
- Provided
SsoServiceRegistration
for streamlined service configuration.
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. |
-
net8.0
- Franz.Common.EntityFramework (>= 1.2.62)
- Microsoft.AspNetCore.Identity (>= 2.2.0)
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 8.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.