1 implementation of TryFindImplementationAssemblyPath
Microsoft.CodeAnalysis.Features (1)
PdbSourceDocument\ImplementationAssemblyLookupService.cs (1)
42public bool TryFindImplementationAssemblyPath(string referencedDllPath, [NotNullWhen(true)] out string? implementationDllPath)
5 references to TryFindImplementationAssemblyPath
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (3)
PdbSourceDocument\ImplementationAssemblyLookupServiceTests.cs (3)
53Assert.False(service.TryFindImplementationAssemblyPath(GetDllPath(packDir), out var implementationDll)); 88Assert.True(service.TryFindImplementationAssemblyPath(GetDllPath(packDir), out var implementationDll)); 126Assert.True(service.TryFindImplementationAssemblyPath(GetDllPath(packDir), out var implementationDll));
Microsoft.CodeAnalysis.Features (2)
MetadataAsSource\DecompilationMetadataAsSourceFileProvider.cs (1)
232!_implementationAssemblyLookupService.TryFindImplementationAssemblyPath(assemblyLocation, out assemblyLocation))
PdbSourceDocument\PdbSourceDocumentMetadataAsSourceFileProvider.cs (1)
129if (_implementationAssemblyLookupService.TryFindImplementationAssemblyPath(dllPath, out dllPath))