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