3 implementations of FindPackagesWithTypeAsync
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\MissingImportDiscovery\RemoteMissingImportDiscoveryService.cs (1)
108public ValueTask<ImmutableArray<PackageWithTypeResult>> FindPackagesWithTypeAsync(string source, string name, int arity, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (1)
SymbolSearch\ISymbolSearchService.cs (1)
166public ValueTask<ImmutableArray<PackageWithTypeResult>> FindPackagesWithTypeAsync(string source, string name, int arity, CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices (1)
SymbolSearch\VisualStudioSymbolSearchService.cs (1)
115public async ValueTask<ImmutableArray<PackageWithTypeResult>> FindPackagesWithTypeAsync(
18 references to FindPackagesWithTypeAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (9)
AddUsing\AddUsingNuGetTests.cs (9)
69packageServiceMock.Setup(s => s.FindPackagesWithTypeAsync( 102packageServiceMock.Setup(s => s.FindPackagesWithTypeAsync( 133packageServiceMock.Setup(s => s.FindPackagesWithTypeAsync( 164packageServiceMock.Setup(s => s.FindPackagesWithTypeAsync( 193packageServiceMock.Setup(s => s.FindPackagesWithTypeAsync( 219packageServiceMock.Setup(s => s.FindPackagesWithTypeAsync( 263packageServiceMock.Setup(s => s.FindPackagesWithTypeAsync( 297packageServiceMock.Setup(s => s.FindPackagesWithTypeAsync(PackageSourceHelper.NugetOrgSourceName, "NuGetType", 0, It.IsAny<CancellationToken>())) 330packageServiceMock.Setup(s => s.FindPackagesWithTypeAsync(PackageSourceHelper.NugetOrgSourceName, "NuGetType", 0, It.IsAny<CancellationToken>()))
Microsoft.CodeAnalysis.Features (2)
AddImport\Remote\AbstractAddImportFeatureService_Remote.cs (1)
40=> GetService(callbackId).FindPackagesWithTypeAsync(source, name, arity, cancellationToken);
AddImport\SymbolReferenceFinder_PackageAssemblySearch.cs (1)
121var results = await _symbolSearchService.FindPackagesWithTypeAsync(
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (7)
Diagnostics\AddImport\AddImportTests_NuGet.vb (7)
61packageServiceMock.Setup(Function(s) s.FindPackagesWithTypeAsync(PackageSourceHelper.NugetOrgSourceName, "NuGetType", 0, It.IsAny(Of CancellationToken)())). 90packageServiceMock.Setup(Function(s) s.FindPackagesWithTypeAsync(PackageSourceHelper.NugetOrgSourceName, "NuGetType", 0, It.IsAny(Of CancellationToken)())). 119packageServiceMock.Setup(Function(s) s.FindPackagesWithTypeAsync(PackageSourceHelper.NugetOrgSourceName, "NuGetType", 0, It.IsAny(Of CancellationToken)())). 144packageServiceMock.Setup(Function(s) s.FindPackagesWithTypeAsync(PackageSourceHelper.NugetOrgSourceName, "NuGetType", 0, It.IsAny(Of CancellationToken)())). 169packageServiceMock.Setup(Function(s) s.FindPackagesWithTypeAsync(PackageSourceHelper.NugetOrgSourceName, "NuGetType", 0, It.IsAny(Of CancellationToken)())). 211packageServiceMock.Setup(Function(s) s.FindPackagesWithTypeAsync(PackageSourceHelper.NugetOrgSourceName, "NuGetType", 0, It.IsAny(Of CancellationToken)())). 243packageServiceMock.Setup(Function(s) s.FindPackagesWithTypeAsync(PackageSourceHelper.NugetOrgSourceName, "NuGetType", 0, It.IsAny(Of CancellationToken)())).