You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (checkNugetFeedResponsiveness && !CheckFeeds(out explicitFeeds))
110
+
if (checkNugetFeedResponsiveness && !CheckFeeds(out explicitFeeds, out allFeeds))
110
111
{
111
112
// todo: we could also check the reachability of the inherited nuget feeds, but to use those in the fallback we would need to handle authentication too.
112
113
var unresponsiveMissingPackageLocation = DownloadMissingPackagesFromSpecificFeeds(explicitFeeds);
@@ -156,7 +157,7 @@ public HashSet<AssemblyLookupLocation> Restore()
156
157
157
158
var restoredProjects = RestoreSolutions(out var container);
158
159
var projects = fileProvider.Projects.Except(restoredProjects);
159
-
RestoreProjects(projects, explicitFeeds, out var containers);
160
+
RestoreProjects(projects, allFeeds, out var containers);
160
161
161
162
var dependencies = containers.Flatten(container);
162
163
@@ -704,10 +705,11 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount,
704
705
/// as well as any private package registry feeds that are configured.
705
706
/// </summary>
706
707
/// <param name="explicitFeeds">Outputs the set of explicit feeds.</param>
708
+
/// <param name="allFeeds">Outputs the set of all feeds (explicit and inherited).</param>
707
709
/// <returns>True if all feeds are reachable or false otherwise.</returns>
0 commit comments