2 types derived from CSharpLspServiceFactory
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
LspServicesTests.cs (2)
124internal sealed class DuplicateCSharpLspServiceFactory() : CSharpLspServiceFactory { } 134internal sealed class DuplicateAnyLspServiceFactory() : CSharpLspServiceFactory { }
5 references to CSharpLspServiceFactory
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (5)
LspServicesTests.cs (5)
22var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(CSharpLspServiceFactory)); 29Assert.Equal(typeof(CSharpLspServiceFactory).Name, lspServiceFromFactory.FactoryName); 35var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(AnyLspService), typeof(CSharpLspServiceFactory), typeof(AnyLspServiceFactory)); 42Assert.Equal(typeof(CSharpLspServiceFactory).Name, lspServiceFromFactory.FactoryName); 61var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(CSharpLspServiceFactory), typeof(DuplicateCSharpLspService), typeof(DuplicateCSharpLspServiceFactory));