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 transitive dependency needed to be pinned to a specific version in project.csproj, but the repo was using Central Package Management and the corresponding entry in Directory.Packages.props was missing.
E.g., the following change was made in project.csproj
Scenario seen in an internal conversation.
A transitive dependency needed to be pinned to a specific version in
project.csproj
, but the repo was using Central Package Management and the corresponding entry inDirectory.Packages.props
was missing.E.g., the following change was made in
project.csproj
... +<PackageReference Include="Some.Transitive.Dependency" /> ...
However the following change was expected, but not made in `Directory.Packages.props
... +<PackageVersion Include="Some.Transitive.Dependency" Version="1.2.3" /> ...
The text was updated successfully, but these errors were encountered: