Skip to content

Commit

Permalink
Properly pass parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
sensslen committed Sep 16, 2024
1 parent e4ed3d1 commit 1ad8ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NuGetUtility/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private async Task<int> OnExecuteAsync(CancellationToken cancellationToken)
IEnumerable<PackageIdentity>? installedPackages = null;
try
{
installedPackages = projectReader.GetInstalledPackages(p, IncludeTransitive);
installedPackages = projectReader.GetInstalledPackages(p, IncludeTransitive, TargetFramework);
}
catch (Exception e)
{
Expand Down

0 comments on commit 1ad8ea8

Please sign in to comment.