Skip to content

Feature/50 nuget package manager #51

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

Merged
merged 2 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions src/NuGetMonitor/Options/GeneralOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,11 @@ public sealed class GeneralOptions : BaseOptionModel<GeneralOptions>
[Description("Show a notification detailing vulnerable transitive packages.")]
[DefaultValue(true)]
public bool ShowTransitivePackagesIssues { get; set; } = true;

[Category("Notifications")]
[DisplayName("Open NuGet Package Manager")]
[Description("Open the built-in NuGet Package Manager instead of the NuGet Monitor Package Manager.")]
[DefaultValue(true)]
public bool OpenNuGetPackageManager { get; set; } = false;
}

14 changes: 13 additions & 1 deletion src/NuGetMonitor/Services/InfoBarService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private static void InfoBar_ActionItemClicked(object sender, InfoBarActionItemEv
switch (e.ActionItem.ActionContext)
{
case Actions.Manage:
NuGetMonitorCommands.Instance?.ShowMonitorToolWindow();
OpenNuGetPackageManager();
break;

case ICollection<TransitiveDependencies> transitiveDependencies:
Expand All @@ -129,6 +129,18 @@ private static void InfoBar_ActionItemClicked(object sender, InfoBarActionItemEv
}
}

private static void OpenNuGetPackageManager()
{
if (GeneralOptions.Instance.OpenNuGetPackageManager)
{
VS.Commands.ExecuteAsync("Tools.ManageNuGetPackagesForSolution").FireAndForget();
}
else
{
NuGetMonitorCommands.Instance?.ShowMonitorToolWindow();
}
}

private static void PrintDependencyTree(IEnumerable<TransitiveDependencies> dependencies)
{
var text = new StringBuilder();
Expand Down
Loading