11 references to XamlProjectService
Microsoft.VisualStudio.LanguageServices.Xaml (11)
Diagnostics\Analyzers\XamlDocumentDiagnosticAnalyzer.cs (5)
18
=>
XamlProjectService
.AnalyzerService?.SupportedDiagnostics ?? [];
21
=>
XamlProjectService
.AnalyzerService is null || textDocument is not Document document
23
: await
XamlProjectService
.AnalyzerService.AnalyzeSyntaxAsync(document, cancellationToken).ConfigureAwait(false);
26
=>
XamlProjectService
.AnalyzerService is null || textDocument is not Document document
28
: await
XamlProjectService
.AnalyzerService.AnalyzeSemanticsAsync(document, cancellationToken).ConfigureAwait(false);
Implementation\LanguageServer\XamlRequestExecutionQueue.cs (2)
14
private readonly
XamlProjectService
_projectService;
17
XamlProjectService
projectService,
Implementation\LanguageServer\XamlRequestExecutionQueueProvider.cs (2)
18
private readonly
XamlProjectService
_projectService;
22
public XamlRequestExecutionQueueProvider(
XamlProjectService
projectService)
Implementation\XamlTextViewCreationListener.cs (2)
29
private readonly
XamlProjectService
_projectService;
36
XamlProjectService
projectService)