Default MSAL to true (#234290)

Using new `microsoft-authentication.implementation` setting
This commit is contained in:
Tyler James Leonhardt
2024-11-20 13:15:09 -08:00
committed by GitHub
parent 2e93ebce77
commit d12854f6ba
3 changed files with 21 additions and 10 deletions

View File

@@ -100,9 +100,18 @@
{
"title": "Microsoft",
"properties": {
"microsoft.useMsal": {
"type": "boolean",
"description": "%useMsal.description%",
"microsoft-authentication.implementation": {
"type": "string",
"default": "msal",
"enum": [
"msal",
"classic"
],
"enumDescriptions": [
"%microsoft-authentication.implementation.enumDescriptions.msal%",
"%microsoft-authentication.implementation.enumDescriptions.classic%"
],
"description": "%microsoft-authentication.implementation.description%",
"tags": [
"onExP",
"preview"