Skip to content

Commit

Permalink
Fixed failing build
Browse files Browse the repository at this point in the history
  • Loading branch information
jainaashish committed Sep 26, 2016
1 parent e895445 commit 46a8ddf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ public IReadOnlyList<NuGetProjectAction> GetProjectActions()

foreach (var package in removed)
{
actions.Add(NuGetProjectAction.CreateUninstallProjectAction(package, Project));
actions.Add(NuGetProjectAction.CreateUninstallProjectAction(package));
}

foreach (var package in added)
{
actions.Add(NuGetProjectAction.CreateInstallProjectAction(package, sourceRepository: null, project: Project));
actions.Add(NuGetProjectAction.CreateInstallProjectAction(package, sourceRepository: null));
}
}

Expand Down

0 comments on commit 46a8ddf

Please sign in to comment.