8 references to ParseResult
dotnet (3)
Commands\Test\MTP\MicrosoftTestingPlatformTestCommand.Help.cs (1)
24Run(context.ParseResult, isHelp: true);
Parser.cs (2)
360NuGetCommand.Run(context.ParseResult); 374var arguments = context.ParseResult.GetValue(FormatCommandParser.Arguments);
Microsoft.TemplateEngine.Cli (5)
Commands\create\InstantiateCommand.Help.cs (2)
93InstantiateCommandArgs instantiateCommandArgs = new(this, context.ParseResult); 94using IEngineEnvironmentSettings environmentSettings = CreateEnvironmentSettings(instantiateCommandArgs, context.ParseResult);
Commands\NewCommand.Help.cs (3)
15if (context.ParseResult.CommandResult.Command is not NewCommand newCommand) 19NewCommandArgs args = new(newCommand, context.ParseResult); 20using IEngineEnvironmentSettings environmentSettings = CreateEnvironmentSettings(args, context.ParseResult);