From 7afcd21db6fad07544835276ce22b98ea7960ceb Mon Sep 17 00:00:00 2001 From: Jean-Claude Paquin Date: Fri, 18 Jun 2021 02:28:50 -0700 Subject: [PATCH 1/2] Update dependencies to enable MSAL UI auth flow MSAL UI auth flow is required for some users with additional MFA requirements imposed by their AAD admin. For some reason device code flow was not producing correct output (and device flow is also a PITA). For users who require MSAL UI auth flow, be sure to enable MSAL via the NUGET_CREDENTIALPROVIDER_MSAL_ENABLED environment variable. --- .../CredentialProvider.Microsoft.Tests.csproj | 2 +- .../CredentialProvider.Microsoft.csproj | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CredentialProvider.Microsoft.Tests/CredentialProvider.Microsoft.Tests.csproj b/CredentialProvider.Microsoft.Tests/CredentialProvider.Microsoft.Tests.csproj index c853bcc1..65c8a0bb 100644 --- a/CredentialProvider.Microsoft.Tests/CredentialProvider.Microsoft.Tests.csproj +++ b/CredentialProvider.Microsoft.Tests/CredentialProvider.Microsoft.Tests.csproj @@ -12,7 +12,7 @@ - + diff --git a/CredentialProvider.Microsoft/CredentialProvider.Microsoft.csproj b/CredentialProvider.Microsoft/CredentialProvider.Microsoft.csproj index ab6172d6..ea21a40d 100644 --- a/CredentialProvider.Microsoft/CredentialProvider.Microsoft.csproj +++ b/CredentialProvider.Microsoft/CredentialProvider.Microsoft.csproj @@ -1,4 +1,4 @@ - + Exe @@ -32,12 +32,12 @@ - - - - + + + + - + From 5f33672d5ec60935084747ae9f08dc46326fd5e0 Mon Sep 17 00:00:00 2001 From: Jean-Claude Paquin Date: Fri, 18 Jun 2021 02:36:55 -0700 Subject: [PATCH 2/2] Bump version with dependency updates --- Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build.props b/Build.props index 4189d5e3..6fbfdc12 100644 --- a/Build.props +++ b/Build.props @@ -1,6 +1,6 @@ - 0.1.26 + 0.1.27