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

Commit 05c53c7

Browse files
committed
Update to 4.37.0
1 parent f3ec04c commit 05c53c7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.Identity.Client" version="4.36.1" />
4-
<package id="Microsoft.Identity.Client.Desktop" version="4.36.1" />
3+
<package id="Microsoft.Identity.Client" version="4.37.0" />
4+
<package id="Microsoft.Identity.Client.Desktop" version="4.37.0" />
55
<package id="Microsoft.Web.WebView2" version="1.0.864.35" />
66
<!-- <package id="System.Security.Cryptography.ProtectedData" version="4.7.0" /> -->
77
</packages>

src/Get-MsalToken.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ function Get-MsalToken {
335335
"*" {
336336
if ($AzureCloudInstance -and $TenantId) { [void] $AquireTokenParameters.WithAuthority($AzureCloudInstance, $TenantId) }
337337
elseif ($AzureCloudInstance) { [void] $AquireTokenParameters.WithAuthority($AzureCloudInstance, 'common') }
338-
elseif ($TenantId) { [void] $AquireTokenParameters.WithAuthority(('https://{0}' -f $ClientApplication.AppConfig.AuthorityInfo.Host), $TenantId) }
338+
elseif ($TenantId) { [void] $AquireTokenParameters.WithAuthority(('https://{0}' -f $ClientApplication.AppConfig.Authority.AuthorityInfo.Host), $TenantId) }
339339
if ($Authority) { [void] $AquireTokenParameters.WithAuthority($Authority.AbsoluteUri) }
340340
if ($CorrelationId) { [void] $AquireTokenParameters.WithCorrelationId($CorrelationId) }
341341
if ($ExtraQueryParameters) { [void] $AquireTokenParameters.WithExtraQueryParameters((ConvertTo-Dictionary $ExtraQueryParameters -KeyType ([string]) -ValueType ([string]))) }

src/MSAL.PS.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
RootModule = 'MSAL.PS.psm1'
1111

1212
# Version number of this module.
13-
ModuleVersion = '4.36.1'
13+
ModuleVersion = '4.37.0'
1414

1515
# Supported PSEditions
1616
CompatiblePSEditions = 'Core','Desktop'
@@ -25,7 +25,7 @@ Author = 'Jason Thompson'
2525
CompanyName = 'Microsoft Corporation'
2626

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

3030
# Description of the functionality provided by this module
3131
Description = @'

0 commit comments

Comments
 (0)