4 references to GetValue
aspire (1)
Commands\ConfigCommand.cs (1)
454var useJson = parseResult.GetValue<bool>("--json");
Aspire.Cli.Tests (2)
Commands\TerminalCommandViewerOptionTests.cs (2)
57var viewerValue = result.GetValue<bool>("--viewer"); 72var viewerValue = result.GetValue<bool>("--viewer");
Microsoft.DotNet.Cli.Utils (1)
MSBuildArgs.cs (1)
139return options.Any(o => o.Name == name) ? parseResult.GetValue<T>(name) : default;