Skip to content

Commit

Permalink
Don't select transitive packages in Updates tab (#6179)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinrrm authored Dec 3, 2024
1 parent 0dc2f25 commit aef398f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aef398f

Please sign in to comment.