17 references to Definition
dotnet-aot (17)
parent\dotnet\Commands\Solution\List\SolutionListCommand.cs (2)
20
_fileOrDirectory = parseResult.GetValue(
Definition
.Parent.SlnArgument);
21
_displaySolutionFolders = parseResult.GetValue(
Definition
.SolutionFolderOption);
parent\dotnet\Commands\Solution\Migrate\SolutionMigrateCommand.cs (1)
21
_slnFileOrDirectory = parseResult.GetValue(
Definition
.Parent.SlnArgument);
parent\dotnet\Commands\Solution\Remove\SolutionRemoveCommand.cs (2)
22
_fileOrDirectory = parseResult.GetValue(
Definition
.Parent.SlnArgument);
23
_projects = [.. parseResult.GetValue(
Definition
.ProjectPathArgument) ?? []];
parent\dotnet\Commands\Tool\List\ToolListLocalCommand.cs (2)
34
var packageIdArgument = _parseResult.GetValue(
Definition
.PackageIdArgument);
43
var formatValue = _parseResult.GetValue(
Definition
.ToolListFormatOption);
parent\dotnet\Commands\Tool\Run\ToolRunCommand.cs (3)
23
_toolCommandName = result.GetValue(
Definition
.CommandNameArgument);
24
_forwardArgument = result.GetValue(
Definition
.CommandArgument);
26
_allowRollForward = result.GetValue(
Definition
.RollForwardOption);
parent\dotnet\Commands\Tool\Search\ToolSearchCommand.cs (5)
22
var isDetailed = _parseResult.GetValue(
Definition
.DetailOption);
40
searchTerm: _parseResult.GetValue(
Definition
.SearchTermArgument),
41
skip: GetParsedResultAsInt(
Definition
.SkipOption),
42
take: GetParsedResultAsInt(
Definition
.TakeOption),
43
prerelease: _parseResult.GetValue(
Definition
.PrereleaseOption));
parent\dotnet\Commands\Tool\Uninstall\ToolUninstallLocalCommand.cs (2)
31
_packageId = new PackageId(parseResult.GetValue(
Definition
.PackageIdArgument));
32
_explicitManifestFile = parseResult.GetValue(
Definition
.ToolManifestOption);