diff --git a/docs/reference/errors-and-warnings/NU1109.md b/docs/reference/errors-and-warnings/NU1109.md index afc35ee5b..cefa7a022 100644 --- a/docs/reference/errors-and-warnings/NU1109.md +++ b/docs/reference/errors-and-warnings/NU1109.md @@ -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.