1 write to RemoteLibraryProviders
NuGet.DependencyResolver.Core (1)
Remote\RemoteWalkContext.cs (1)
23RemoteLibraryProviders = new List<IRemoteDependencyProvider>();
10 references to RemoteLibraryProviders
NuGet.Commands (6)
RestoreCommand\Diagnostics\UnresolvedMessages.cs (2)
39context.RemoteLibraryProviders, 62context.RemoteLibraryProviders,
RestoreCommand\ProjectRestoreCommand.cs (2)
240return DownloadDependencyResolutionResult.Create(targetFrameworkInformation.FrameworkName, Array.Empty<Tuple<LibraryRange, RemoteMatch>>(), context.RemoteLibraryProviders); 252return DownloadDependencyResolutionResult.Create(targetFrameworkInformation.FrameworkName, packageDownloadMatches, context.RemoteLibraryProviders);
RestoreCommand\RestoreCommand.cs (1)
2295context.RemoteLibraryProviders.Add(provider);
RestoreCommand\RestoreTargetGraph.cs (1)
188var isRemote = context.RemoteLibraryProviders.Contains(node.Item.Data.Match.Provider);
NuGet.DependencyResolver.Core (4)
Remote\RemoteWalkContext.cs (4)
78for (int i = 0; i < RemoteLibraryProviders.Count; ++i) 80var current = RemoteLibraryProviders[i]; 92return RemoteLibraryProviders; 115if (item.Key.Type == LibraryType.Unresolved || !RemoteLibraryProviders.Contains(item.Data.Match.Provider))