Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doBuild.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ function DoBuild
'NuGet.Protocol'
'NuGet.Versioning'
'System.Buffers'
'System.ClientModel'
'System.Diagnostics.DiagnosticSource'
'System.IO.FileSystem.AccessControl'
'System.Memory.Data'
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.419"
"version": "8.0.421"
}
}
3 changes: 2 additions & 1 deletion src/code/Microsoft.PowerShell.PSResourceGet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.Json" Version="8.0.6" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Azure.Identity" Version="1.14.2" />
<PackageReference Include="Azure.Identity" Version="1.17.1" />
<PackageReference Include="System.Buffers" Version="4.6.1" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.5" />
<Reference Include="System.Web" />
</ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions src/code/ModuleInitAndCleanup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ public class UnsafeAssemblyHandler : IModuleAssemblyInitializer, IModuleAssembly

private static readonly HashSet<string> NetFrameworkLoadFromPath = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
{
"System.Buffers",
"System.ClientModel",
"System.Numerics.Vectors",
"System.Threading.Tasks.Extensions",
"System.Runtime.CompilerServices.Unsafe",
"System.Memory",
"System.Diagnostics.DiagnosticSource",
Expand Down
1 change: 0 additions & 1 deletion src/code/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,6 @@ public static string GetAzAccessToken(PSCmdlet cmdletPassedIn)
ExcludeVisualStudioCredential = true,
ExcludeWorkloadIdentityCredential = true,
ExcludeManagedIdentityCredential = true, // ManagedIdentityCredential makes the experience slow
ExcludeSharedTokenCacheCredential = true, // SharedTokenCacheCredential is not supported on macOS
ExcludeAzureCliCredential = false,
ExcludeAzurePowerShellCredential = false,
ExcludeInteractiveBrowserCredential = false
Expand Down
Loading