9 references to Project
Microsoft.CodeAnalysis.LanguageServer.Protocol (9)
Handler\Diagnostics\DiagnosticSources\AbstractProjectDiagnosticSource.cs (9)
18
protected Solution Solution => this.
Project
.Solution;
29
public ProjectOrDocumentId GetId() => new(
Project
.Id);
30
public Project GetProject() =>
Project
;
32
=> !string.IsNullOrEmpty(
Project
.FilePath)
33
? new VSTextDocumentIdentifier { ProjectContext = ProtocolConversions.ProjectToProjectContext(
Project
), DocumentUri = ProtocolConversions.CreateAbsoluteDocumentUri(
Project
.FilePath) }
35
public string ToDisplayString() =>
Project
.Name;
56
Project
, diagnosticIds: null, shouldIncludeAnalyzer, includeNonLocalDocumentDiagnostics: false, cancellationToken).ConfigureAwait(false);
79
return Task.FromResult(codeAnalysisService.GetLastComputedProjectDiagnostics(
Project
.Id));