6 references to ToolListOutputFormat
dotnet (6)
Commands\Tool\List\ToolListCommandParser.cs (2)
27
public static readonly Option<
ToolListOutputFormat
> ToolListFormatOption = new("--format")
30
DefaultValueFactory = _ =>
ToolListOutputFormat
.table,
Commands\Tool\List\ToolListGlobalOrToolPathCommand.cs (2)
53
var
formatValue = _parseResult.GetValue(ToolListCommandParser.ToolListFormatOption);
54
if (formatValue is
ToolListOutputFormat
.json)
Commands\Tool\List\ToolListLocalCommand.cs (2)
42
var
formatValue = _parseResult.GetValue(ToolListCommandParser.ToolListFormatOption);
43
if (formatValue is
ToolListOutputFormat
.json)