Skip to content

Commit 718c753

Browse files
authored
Merge pull request #1987 from PowerShell/update-dotnet-8.0.27
2 parents 992743e + c874b79 commit 718c753

5 files changed

Lines changed: 8 additions & 3 deletions

File tree

doBuild.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ function DoBuild
114114
'NuGet.Protocol'
115115
'NuGet.Versioning'
116116
'System.Buffers'
117+
'System.ClientModel'
117118
'System.Diagnostics.DiagnosticSource'
118119
'System.IO.FileSystem.AccessControl'
119120
'System.Memory.Data'

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "8.0.419"
3+
"version": "8.0.421"
44
}
55
}

src/code/Microsoft.PowerShell.PSResourceGet.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
<PackageReference Include="System.Net.Http" Version="4.3.4" />
2525
<PackageReference Include="System.Text.Json" Version="8.0.6" />
2626
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
27-
<PackageReference Include="Azure.Identity" Version="1.14.2" />
27+
<PackageReference Include="Azure.Identity" Version="1.17.1" />
28+
<PackageReference Include="System.Buffers" Version="4.6.1" />
2829
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.5" />
2930
<Reference Include="System.Web" />
3031
</ItemGroup>

src/code/ModuleInitAndCleanup.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ public class UnsafeAssemblyHandler : IModuleAssemblyInitializer, IModuleAssembly
1515

1616
private static readonly HashSet<string> NetFrameworkLoadFromPath = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
1717
{
18+
"System.Buffers",
19+
"System.ClientModel",
20+
"System.Numerics.Vectors",
21+
"System.Threading.Tasks.Extensions",
1822
"System.Runtime.CompilerServices.Unsafe",
1923
"System.Memory",
2024
"System.Diagnostics.DiagnosticSource",

src/code/Utils.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,6 @@ public static string GetAzAccessToken(PSCmdlet cmdletPassedIn)
708708
ExcludeVisualStudioCredential = true,
709709
ExcludeWorkloadIdentityCredential = true,
710710
ExcludeManagedIdentityCredential = true, // ManagedIdentityCredential makes the experience slow
711-
ExcludeSharedTokenCacheCredential = true, // SharedTokenCacheCredential is not supported on macOS
712711
ExcludeAzureCliCredential = false,
713712
ExcludeAzurePowerShellCredential = false,
714713
ExcludeInteractiveBrowserCredential = false

0 commit comments

Comments
 (0)