Skip to content

Commit 32a85c0

Browse files
committed
Add references for transitive dependencies System.Buffers and System.ClientModel
1 parent 0e1db6b commit 32a85c0

3 files changed

Lines changed: 5 additions & 1 deletion

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'

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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ 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",
1820
"System.Runtime.CompilerServices.Unsafe",
1921
"System.Memory",
2022
"System.Diagnostics.DiagnosticSource",

0 commit comments

Comments
 (0)