11 references to XamlProjectService
Microsoft.VisualStudio.LanguageServices.Xaml (11)
Diagnostics\Analyzers\XamlDocumentDiagnosticAnalyzer.cs (5)
23
return
XamlProjectService
.AnalyzerService?.SupportedDiagnostics ?? ImmutableArray<DiagnosticDescriptor>.Empty;
29
if (
XamlProjectService
.AnalyzerService == null)
34
return await
XamlProjectService
.AnalyzerService.AnalyzeSyntaxAsync(document, cancellationToken).ConfigureAwait(false);
39
if (
XamlProjectService
.AnalyzerService == null)
44
return await
XamlProjectService
.AnalyzerService.AnalyzeSemanticsAsync(document, cancellationToken).ConfigureAwait(false);
Implementation\LanguageServer\XamlRequestExecutionQueue.cs (2)
15
private readonly
XamlProjectService
_projectService;
18
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)