Skip to content

Commit a1f778a

Browse files
resolving issues with PS 7.4.4
1 parent c5dacb6 commit a1f778a

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
1212
</PropertyGroup>
1313
<ItemGroup>
14-
<PackageReference Include="Azure.Identity" Version="1.12.0-beta.3" />
14+
<PackageReference Include="Azure.Core.Experimental" Version="0.1.0-preview.34" />
15+
<PackageReference Include="Azure.Identity" Version="1.13.0-beta.1" />
1516
<PackageReference Include="Azure.Identity.Broker" Version="1.2.0-beta.1" />
16-
<PackageReference Include="Microsoft.Graph.Core" Version="3.1.12" />
17-
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
18-
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.61.3" />
17+
<PackageReference Include="Microsoft.Graph.Core" Version="3.1.14" />
18+
<PackageReference Include="Microsoft.Identity.Client" Version="4.62.0" />
19+
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.62.0" />
1920
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2021
</ItemGroup>
2122
<Target Name="CopyFiles" AfterTargets="Build">

src/Authentication/Authentication/Helpers/HttpHelpers.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ private static HttpClient GetGraphHttpClient(AzureIdentityAccessTokenProvider au
5454
new NationalCloudHandler(),
5555
new ODataQueryOptionsHandler(),
5656
new HttpVersionHandler(),
57-
new CompressionHandler(),
57+
//new CompressionHandler(),
5858
new RetryHandler(new RetryHandlerOption{
5959
Delay = requestContext.RetryDelay,
6060
MaxRetry = requestContext.MaxRetry,

src/Authentication/Authentication/Microsoft.Graph.Authentication.nuspec

+2
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,14 @@
5050
<file src="artifacts\Dependencies\Core\runtimes\win-arm64\native\msalruntime_arm64.dll" target="Dependencies" />
5151
<!-- Core-->
5252
<file src="artifacts\Dependencies\Core\Azure.Core.dll" target="Dependencies\Core" />
53+
<file src="artifacts\Dependencies\Core\Azure.Core.Experimental.dll" target="Dependencies\Core" />
5354
<file src="artifacts\Dependencies\Core\Microsoft.Graph.Core.dll" target="Dependencies\Core" />
5455
<file src="artifacts\Dependencies\Core\Microsoft.Identity.Client.dll" target="Dependencies\Core" />
5556
<file src="artifacts\Dependencies\Core\Microsoft.Identity.Client.Extensions.Msal.dll" target="Dependencies\Core" />
5657
<file src="artifacts\Dependencies\Core\Newtonsoft.Json.dll" target="Dependencies\Core" />
5758
<!-- Desktop -->
5859
<file src="artifacts\Dependencies\Desktop\Azure.Core.dll" target="Dependencies\Desktop" />
60+
<file src="artifacts\Dependencies\Desktop\Azure.Core.Experimental.dll" target="Dependencies\Desktop" />
5961
<file src="artifacts\Dependencies\Desktop\Microsoft.Graph.Core.dll" target="Dependencies\Desktop" />
6062
<file src="artifacts\Dependencies\Desktop\Microsoft.Identity.Client.dll" target="Dependencies\Desktop" />
6163
<file src="artifacts\Dependencies\Desktop\Microsoft.Identity.Client.Extensions.Msal.dll" target="Dependencies\Desktop" />

0 commit comments

Comments
 (0)