1 instantiation of CommandLineOptions
dotnet-user-secrets (1)
CommandLineOptions.cs (1)
51var options = new CommandLineOptions();
14 references to CommandLineOptions
dotnet-user-secrets (12)
CommandLineOptions.cs (2)
21public static CommandLineOptions Parse(string[] args, IConsole console) 51var options = new CommandLineOptions();
Internal\ClearCommand.cs (1)
10public static void Configure(CommandLineApplication command, CommandLineOptions options)
Internal\InitCommand.cs (3)
17public CommandLineOptions Options { get; } 19internal static void Configure(CommandLineApplication command, CommandLineOptions options, CommandOption optionFile) 35public InitCommandFactory(CommandLineOptions options)
Internal\ListCommand.cs (1)
14public static void Configure(CommandLineApplication command, CommandLineOptions options)
Internal\RemoveCommand.cs (1)
12public static void Configure(CommandLineApplication command, CommandLineOptions options)
Internal\SetCommand.cs (1)
14public static void Configure(CommandLineApplication command, CommandLineOptions options, IConsole console)
Program.cs (3)
52CommandLineOptions options; 55options = CommandLineOptions.Parse(args, _console); 101internal string ResolveId(CommandLineOptions options, IReporter reporter)
Microsoft.Extensions.SecretManager.Tools.Tests (2)
SetCommandTest.cs (2)
83var options = CommandLineOptions.Parse(new[] { "set", "key", "value" }, testConsole);