A2v10.Identity.UI 10.1.8642

There is a newer version of this package available.
See the version list below for details.
dotnet add package A2v10.Identity.UI --version 10.1.8642
                    
NuGet\Install-Package A2v10.Identity.UI -Version 10.1.8642
                    
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="A2v10.Identity.UI" Version="10.1.8642" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="A2v10.Identity.UI" Version="10.1.8642" />
                    
Directory.Packages.props
<PackageReference Include="A2v10.Identity.UI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add A2v10.Identity.UI --version 10.1.8642
                    
#r "nuget: A2v10.Identity.UI, 10.1.8642"
                    
#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.
#:package A2v10.Identity.UI@10.1.8642
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=A2v10.Identity.UI&version=10.1.8642
                    
Install as a Cake Addin
#tool nuget:?package=A2v10.Identity.UI&version=10.1.8642
                    
Install as a Cake Tool

A2v10.Web.Identity.UI

The user interface for authentication.

Part of the A2v10.Platform package

External Provider Authentication

Create the External Application

Install External login package(s)

Configure platform

Store ClientId and ClientSecret in appsettings.json and enable external providers

"Identity": {
	"Providers": "Local,Google,Microsoft",
	"Google": {
		"ClientId": "GOOGLE_CLIENT_ID",
		"ClientSecret": "GOOGLE_CLIENT_SECRET"
	},
	"Microsoft": {
		"ClientId": MICROSOFT_CLIENT_ID",
		"ClientSecret": "MICROSOFT_CLIENT_SECRET"
	}
},
"DemoAccount": {
    "Login": "DEMO_LOGIN",
    "Password": "DEMO_PASSWORD"
}

Configure services

public void ConfigureServices(IServiceCollection services)

	var builders = services.UsePlatform(Configuration);

    builders.AuthenticationBuilder.AddGoogle(opts =>
	{
		opts.ClientId = Configuration.GetValue<String>("Identity:Google:ClientId");
		opts.ClientSecret = Configuration.GetValue<String>("Identity:Google:ClientSecret");
		opts.Events.OnRemoteFailure = OpenIdErrorHandlers.OnRemoteFailure;
		// For automatic user creation on External Login
		opts.Events.OnTicketReceived = OpenIdTicketHandler<{UserIdType}>.OnTickedReceived;
	})
	.AddMicrosoftAccount(opts =>
	{
		opts.ClientId = Configuration.GetValue<String>("Identity:Microsoft:ClientId");
		opts.ClientSecret = Configuration.GetValue<String>("Identity:Microsoft:ClientSecret");
		opts.Events.OnRemoteFailure = OpenIdErrorHandlers.OnRemoteFailure;
	});
}
Product 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 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on A2v10.Identity.UI:

Package Downloads
A2v10.Platform

A2v10 Platform core

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.1.8647 230 7/15/2026
10.1.8642 325 6/27/2026
10.1.8639 298 6/7/2026
10.1.8637 337 5/8/2026
10.1.8634 210 4/21/2026
10.1.8631 367 3/29/2026
10.1.8630 172 3/24/2026
10.1.8624 248 3/4/2026
10.1.8622 359 2/24/2026
10.1.8620 289 1/17/2026
10.1.8606 306 1/5/2026
10.1.8605 178 1/1/2026
10.1.8601 290 12/26/2025
10.1.8600 620 12/1/2025
10.1.8569 826 8/25/2025
10.1.8566 324 8/18/2025
10.1.8565 299 8/12/2025
10.1.8563 439 7/26/2025
10.1.8558 443 6/19/2025
10.1.8554 452 6/9/2025
Loading failed