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