Ganesh Kumar
Ganesh Kumar

Reputation: 103

Individual User Account in Visual Studio 2017

Can any one please explain this change in "Change Authentication" dialog box. Previously it was easy creating a project with Individual user accounts, but now this is annoying, because I am forced to fill in the options. I couldn't find any help regarding it either, so StackOverflow is my last option. Please refer the image below to understand what I mean. If you find it too silly and unwilling to answer, then please point me to any resource that will help me understand this.

Change Authentication dialog box Three new fields

Upvotes: 0

Views: 375

Answers (1)

Brando Zhang
Brando Zhang

Reputation: 28267

As far as I know, this setting is used to configure Cloud authentication with Azure Active Directory B2C in ASP.NET Core.

Azure Active Directory B2C (Azure AD B2C) is a cloud identity management solution for web and mobile apps. The service provides authentication for apps hosted in the cloud and on-premises.

If you want to configure the Cloud authentication with Azure Active Directory B2C in ASP.NET Core, you should firstly create the Azrue AD B2C and then register the app in Azure AD B2C.

The app inside the Azure AD B2C will contains Application ID and its domain name, then you could use that Application ID, domain name and set Sign_in or Sign_up policy to B2C_1_SiUpIn.

More details, you could refer to this article. Notice: This article is for VS2019 but almost same.

Upvotes: 1

Related Questions