8 references to ParseResult
dotnet-aot (3)
parent\dotnet\Commands\Test\MTP\MicrosoftTestingPlatformTestCommand.Help.cs (1)
25
Run(context.
ParseResult
, isHelp: true);
parent\dotnet\Parser.cs (2)
466
NuGetCommand.Run(context.
ParseResult
);
480
var arguments = context.
ParseResult
.GetValue(format.Arguments) ?? [];
Microsoft.TemplateEngine.Cli (5)
Commands\create\InstantiateCommand.Help.cs (2)
88
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
);
26
using IEngineEnvironmentSettings environmentSettings = CreateEnvironmentSettings(args, context.
ParseResult
);