2 instantiations of TaskResultCache
NuGet.Commands (2)
RestoreCommand\SourceRepositoryDependencyProvider.cs (2)
40
private readonly TaskResultCache<LibraryRangeCacheKey, LibraryDependencyInfo> _dependencyInfoCache =
new
();
41
private readonly TaskResultCache<LibraryRange, LibraryIdentity> _libraryMatchCache =
new
();
5 references to TaskResultCache
NuGet.Commands (5)
RestoreCommand\SourceRepositoryDependencyProvider.cs (2)
40
private readonly
TaskResultCache
<LibraryRangeCacheKey, LibraryDependencyInfo> _dependencyInfoCache = new();
41
private readonly
TaskResultCache
<LibraryRange, LibraryIdentity> _libraryMatchCache = new();
src\nuget-client\build\Shared\TaskResultCache.cs (3)
31
/// Initializes a new instance of the <see cref="
TaskResultCache
{TKey, TValue}" /> class with the specified key comparer.
41
/// Initializes a new instance of the <see cref="
TaskResultCache
{TKey, TValue}" /> class with the specified initial capacity.
51
/// Initializes a new instance of the <see cref="
TaskResultCache
{TKey, TValue}" /> class.