2 implementations of IHostWorkspaceProvider
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\MockHostWorkspaceProvider.cs (1)
13internal sealed class MockHostWorkspaceProvider : IHostWorkspaceProvider
Microsoft.VisualStudio.LanguageServices (1)
Workspace\VisualStudioIHostWorkspaceProvider.cs (1)
15internal sealed class VisualStudioIHostWorkspaceProvider : IHostWorkspaceProvider
7 references to IHostWorkspaceProvider
Microsoft.CodeAnalysis.EditorFeatures (1)
EditAndContinue\EditAndContinueLanguageService.cs (1)
32Lazy<IHostWorkspaceProvider> workspaceProvider,
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
EditAndContinue\EditAndContinueLanguageServiceTests.cs (2)
71((MockHostWorkspaceProvider)workspace.GetService<IHostWorkspaceProvider>()).Workspace = workspace; 107((MockHostWorkspaceProvider)localWorkspace.GetService<IHostWorkspaceProvider>()).Workspace = localWorkspace;
Microsoft.CodeAnalysis.ExternalAccess.Copilot (1)
Internal\SemanticSearch\CopilotSemanticSearchQueryExecutor.cs (1)
24internal sealed class CopilotSemanticSearchQueryExecutor(IHostWorkspaceProvider workspaceProvider) : ICopilotSemanticSearchQueryExecutor
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\MockHostWorkspaceProvider.cs (1)
12[Export(typeof(IHostWorkspaceProvider)), PartNotDiscoverable, Shared]
Microsoft.VisualStudio.LanguageServices (1)
Workspace\VisualStudioIHostWorkspaceProvider.cs (1)
14[Export(typeof(IHostWorkspaceProvider))]
Microsoft.VisualStudio.LanguageServices.CSharp (1)
SemanticSearch\SemanticSearchToolWindowImpl.cs (1)
54IHostWorkspaceProvider hostWorkspaceProvider,