C#: Re-add the compilation information on reachable fallback NuGet feed count.

This commit is contained in:
Michael Nebel
2026-04-09 15:49:53 +02:00
parent b95a8aa378
commit 21fb44d0ba

View File

@@ -274,7 +274,11 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
}
}
return GetReachableNuGetFeeds(fallbackFeeds, isFallback: true);
var reachableFallbackFeeds = GetReachableNuGetFeeds(fallbackFeeds, isFallback: true);
compilationInfoContainer.CompilationInfos.Add(("Reachable fallback NuGet feed count", reachableFallbackFeeds.Count.ToString()));
return reachableFallbackFeeds;
}
/// <summary>