8 references to LsifFormat
Microsoft.CodeAnalysis.LanguageServerIndexFormat.Generator (8)
Program.cs (6)
38new Option("--output-format", "format of LSIF output") { Argument = new Argument<LsifFormat>(defaultValue: () => LsifFormat.Line) }, 42generateCommand.Handler = CommandHandler.Create((Func<FileInfo?, FileInfo?, FileInfo?, FileInfo?, string?, LsifFormat, string?, Task>)GenerateAsync); 53LsifFormat outputFormat, 73LsifFormat.Json => new JsonModeLsifJsonWriter(outputWriter), 74LsifFormat.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"/>.