-
Notifications
You must be signed in to change notification settings - Fork 389
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
Idempotent Project Changes can leave Dependency Node Unresolved #2510
Labels
Feature-Dependency-Node
"Dependencies" node in Solution Explorer that display project, binary & package references
Resolution-Fixed
The bug has been fixed, refer to the milestone to see in which release it was fixed.
Triage-Approved
Reviewed and prioritized
Milestone
Comments
Pilchie
added
Feature-Dependency-Node
"Dependencies" node in Solution Explorer that display project, binary & package references
Area-New-Project-System
labels
Dec 20, 2017
Another way to trigger this:
|
|
Another test case for this is moving a dependency (e.g. |
ghost
added
the
Resolution-Fixed
The bug has been fixed, refer to the milestone to see in which release it was fixed.
label
Mar 23, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Feature-Dependency-Node
"Dependencies" node in Solution Explorer that display project, binary & package references
Resolution-Fixed
The bug has been fixed, refer to the milestone to see in which release it was fixed.
Triage-Approved
Reviewed and prioritized
Repro Steps
Create a .NET Standard project and add the following package references:
Observe that the Newtonsoft.Json reference is flagged with warning NU1603 Package not found, approximate best match was resolved.
Add NoWarn="NU1603" to the StyleCop.Analyzers reference (i.e. to the wrong node)
Expected
No changes to dependencies node.
Actual
StyleCop.Analyzers becomes and remains unresolved, anticipating a new resolved node. This is likely because the change did not trigger a dataflow with a "Difference".
Workaround is to make some other change that triggers a dataflow (e.g. change version to 1.0.1)
The text was updated successfully, but these errors were encountered: