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.Collections.Immutable'

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just confirming we meant to add this

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, it's now needed because the NuGet v6.14.3 packages added a runtime dependency on System.Collections.Immutable

'System.ClientModel'
'System.Diagnostics.DiagnosticSource'
'System.IO.FileSystem.AccessControl'
Expand Down
12 changes: 6 additions & 6 deletions src/code/Microsoft.PowerShell.PSResourceGet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NuGet.Commands" Version="6.9.1" />
<PackageReference Include="NuGet.Common" Version="6.9.1" />
<PackageReference Include="NuGet.Configuration" Version="6.9.1" />
<PackageReference Include="NuGet.Packaging" Version="6.9.1" />
<PackageReference Include="NuGet.ProjectModel" Version="6.9.1" />
<PackageReference Include="NuGet.Protocol" Version="6.9.1" />
<PackageReference Include="NuGet.Commands" Version="6.14.3" />
<PackageReference Include="NuGet.Common" Version="6.14.3" />
<PackageReference Include="NuGet.Configuration" Version="6.14.3" />
<PackageReference Include="NuGet.Packaging" Version="6.14.3" />
<PackageReference Include="NuGet.ProjectModel" Version="6.14.3" />
<PackageReference Include="NuGet.Protocol" Version="6.14.3" />
Comment thread
alerickson marked this conversation as resolved.
<PackageReference Include="PowerShellStandard.Library" Version="7.0.0-preview.1" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.Json" Version="8.0.6" />
Expand Down
Loading