Skip to content
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

Don't select transitive packages in PM UI when updating a package #6179

Merged
merged 1 commit into from
Dec 3, 2024
Merged
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
Don't select transitive packages in Updates tab
martinrrm committed Nov 26, 2024
commit d166ce6b518ba1283b08790e0f37b1db985ac491
Original file line number Diff line number Diff line change
@@ -612,7 +612,7 @@ private void BatchUpdateIsSelectedBasedOnInstalledVersion()
{
foreach (PackageInstallationInfo project in Projects)
{
project.IsSelected = project.InstalledVersion != null;
project.IsSelected = project.InstalledVersion != null && project.PackageLevel.Equals(PackageLevel.TopLevel);
}
}
finally