2 instantiations of GatherAllCacheKey
NuGet.PackageManagement (2)
Resolution\GatherCache.cs (2)
54
var key = new
GatherAllCacheKey
(packageId, source, framework);
109
var key = new
GatherAllCacheKey
(packageId, source, framework);
7 references to GatherAllCacheKey
NuGet.PackageManagement (7)
Resolution\GatherCache.cs (7)
28
private readonly ConcurrentDictionary<
GatherAllCacheKey
, List<SourcePackageDependencyInfo>> _allPackageVersions
29
= new ConcurrentDictionary<
GatherAllCacheKey
, List<SourcePackageDependencyInfo>>();
54
var
key = new GatherAllCacheKey(packageId, source, framework);
109
var
key = new GatherAllCacheKey(packageId, source, framework);
176
private class GatherAllCacheKey : IEquatable<
GatherAllCacheKey
>
192
public bool Equals(
GatherAllCacheKey
other)
211
return Equals(obj as
GatherAllCacheKey
);