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