1 write to ShortName
dotnet-user-secrets (1)
src\Shared\CommandLineUtils\CommandLine\CommandOption.cs (1)
35ShortName = optName;
4 references to ShortName
dotnet-user-secrets (4)
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (1)
250option = command.GetOptions().SingleOrDefault(opt => string.Equals(opt.ShortName, shortOption[0], StringComparison.Ordinal));
src\Shared\CommandLineUtils\CommandLine\CommandOption.cs (3)
48if (string.IsNullOrEmpty(LongName) && string.IsNullOrEmpty(ShortName) && string.IsNullOrEmpty(SymbolName)) 112if (!string.IsNullOrEmpty(ShortName)) 114parts.Add($"-{ShortName}");