Skip to content
This repository has been archived by the owner on Sep 22, 2023. It is now read-only.

Commit

Permalink
Update to 4.37.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jazuntee committed Nov 19, 2021
1 parent f3ec04c commit 05c53c7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Identity.Client" version="4.36.1" />
<package id="Microsoft.Identity.Client.Desktop" version="4.36.1" />
<package id="Microsoft.Identity.Client" version="4.37.0" />
<package id="Microsoft.Identity.Client.Desktop" version="4.37.0" />
<package id="Microsoft.Web.WebView2" version="1.0.864.35" />
<!-- <package id="System.Security.Cryptography.ProtectedData" version="4.7.0" /> -->
</packages>
2 changes: 1 addition & 1 deletion src/Get-MsalToken.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ function Get-MsalToken {
"*" {
if ($AzureCloudInstance -and $TenantId) { [void] $AquireTokenParameters.WithAuthority($AzureCloudInstance, $TenantId) }
elseif ($AzureCloudInstance) { [void] $AquireTokenParameters.WithAuthority($AzureCloudInstance, 'common') }
elseif ($TenantId) { [void] $AquireTokenParameters.WithAuthority(('https://{0}' -f $ClientApplication.AppConfig.AuthorityInfo.Host), $TenantId) }
elseif ($TenantId) { [void] $AquireTokenParameters.WithAuthority(('https://{0}' -f $ClientApplication.AppConfig.Authority.AuthorityInfo.Host), $TenantId) }
if ($Authority) { [void] $AquireTokenParameters.WithAuthority($Authority.AbsoluteUri) }
if ($CorrelationId) { [void] $AquireTokenParameters.WithCorrelationId($CorrelationId) }
if ($ExtraQueryParameters) { [void] $AquireTokenParameters.WithExtraQueryParameters((ConvertTo-Dictionary $ExtraQueryParameters -KeyType ([string]) -ValueType ([string]))) }
Expand Down
4 changes: 2 additions & 2 deletions src/MSAL.PS.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
RootModule = 'MSAL.PS.psm1'

# Version number of this module.
ModuleVersion = '4.36.1'
ModuleVersion = '4.37.0'

# Supported PSEditions
CompatiblePSEditions = 'Core','Desktop'
Expand All @@ -25,7 +25,7 @@ Author = 'Jason Thompson'
CompanyName = 'Microsoft Corporation'

# Copyright statement for this module
Copyright = '(c) 2021 Jason Thompson. All rights reserved.'
Copyright = '(c) 2021 Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = @'
Expand Down

0 comments on commit 05c53c7

Please sign in to comment.