8 references to LsifFormat
Microsoft.CodeAnalysis.LanguageServerIndexFormat.Generator (8)
Program.cs (6)
38
new Option("--output-format", "format of LSIF output") { Argument = new Argument<
LsifFormat
>(defaultValue: () =>
LsifFormat
.Line) },
42
generateCommand.Handler = CommandHandler.Create((Func<FileInfo?, FileInfo?, FileInfo?, FileInfo?, string?,
LsifFormat
, string?, Task>)GenerateAsync);
53
LsifFormat
outputFormat,
73
LsifFormat
.Json => new JsonModeLsifJsonWriter(outputWriter),
74
LsifFormat
.Line => new LineModeLsifJsonWriter(outputWriter),
Writing\JsonModeLsifJsonWriter.cs (1)
15
/// An <see cref="ILsifJsonWriter"/> that writes in <see cref="
LsifFormat
.Json"/>.
Writing\LineModeLsifJsonWriter.cs (1)
14
/// An <see cref="ILsifJsonWriter"/> that writes in <see cref="
LsifFormat
.Line"/>.