6 references to ToolListOutputFormat
dotnet (4)
Commands\Tool\List\ToolListGlobalOrToolPathCommand.cs (2)
56
var
formatValue = _parseResult.GetValue(Definition.ToolListFormatOption);
57
if (formatValue is
ToolListOutputFormat
.json)
Commands\Tool\List\ToolListLocalCommand.cs (2)
43
var
formatValue = _parseResult.GetValue(Definition.ToolListFormatOption);
44
if (formatValue is
ToolListOutputFormat
.json)
Microsoft.DotNet.Cli.Definitions (2)
Commands\Tool\ToolListCommandDefinition.cs (2)
22
public readonly Option<
ToolListOutputFormat
> ToolListFormatOption = new("--format")
25
DefaultValueFactory = _ =>
ToolListOutputFormat
.table,