Skip to content

Commit

Permalink
#50 Add option for NuGet Package Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
sboulema committed Nov 25, 2024
1 parent d4bcb94 commit 8c00804
Show file tree
Hide file tree
Showing 2 changed files with 198 additions and 190 deletions.
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;
}

Loading

0 comments on commit 8c00804

Please sign in to comment.