You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A project has a <PackageReference> to Testcontainers/3.6.0. This pulls in a transitive dependency on System.Text.Json.
An update job was run to update System.Text.Json to 6.0.10, but it did some incorrect updates, namely:
It added <PackageReference Include="System.Text.Json" /> to pin the transitive dependency in the .csproj, but failed to add the corresponding <PackageVersion> element in Directory.Packages.props resulting in a build error because no package version was specified for System.Text.Json.
It updated the <PackageVersion> element for Testcontainers from 3.6.0 to 3.8.0. This update does update the version of System.Text.Json, but not all the way to the desired 6.0.10 version.
The text was updated successfully, but these errors were encountered:
From an internal repo:
<PackageReference>
toTestcontainers/3.6.0
. This pulls in a transitive dependency onSystem.Text.Json
.System.Text.Json
to6.0.10
, but it did some incorrect updates, namely:<PackageReference Include="System.Text.Json" />
to pin the transitive dependency in the.csproj
, but failed to add the corresponding<PackageVersion>
element inDirectory.Packages.props
resulting in a build error because no package version was specified forSystem.Text.Json
.<PackageVersion>
element forTestcontainers
from3.6.0
to3.8.0
. This update does update the version ofSystem.Text.Json
, but not all the way to the desired6.0.10
version.The text was updated successfully, but these errors were encountered: