8 references to ParseResult
dotnet (3)
Commands\Test\MTP\MicrosoftTestingPlatformTestCommand.Help.cs (1)
25Run(context.ParseResult, isHelp: true);
Parser.cs (2)
359NuGetCommand.Run(context.ParseResult); 373var arguments = context.ParseResult.GetValue(format.Arguments) ?? [];
Microsoft.TemplateEngine.Cli (5)
Commands\create\InstantiateCommand.Help.cs (2)
94InstantiateCommandArgs instantiateCommandArgs = new(this, context.ParseResult); 95using 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);