Skip to content

Update NU1109.md #3422

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 4 additions & 1 deletion docs/reference/errors-and-warnings/NU1109.md
Original file line number Diff line number Diff line change
@@ -19,7 +19,10 @@ f1_keywords:

A dependency package specified a version constraint on a higher version of a package than restore ultimately resolved. That is because of the [direct-dependency-wins](../../concepts/dependency-resolution.md#direct-dependency-wins) rule - when resolving packages, the direct package version in the subgraph will override that of the distant packages with the same ID.

This error is specific to transitive dependencies pinned using the [Transitive Pinning](../../consume-packages/Central-Package-Management.md#transitive-pinning)
feature. For other types of package downgrade issues, see [NU1605](./NU1605.md).

### Solution

Update the PackageVersion of B to to the higher version of the package.
In the example above, you would change the package reference to `B` 2.0.0.
In the example above, you would change the package version of `B` to 2.0.0.