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