7 references to XamlProjectService
Microsoft.VisualStudio.LanguageServices.Xaml (7)
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\XamlTextViewCreationListener.cs (2)
29
private readonly
XamlProjectService
_projectService;
36
XamlProjectService
projectService)