2 instantiations of GatherSingleCacheKey
NuGet.PackageManagement (2)
Resolution\GatherCache.cs (2)
40
var key = new
GatherSingleCacheKey
(identity, source, framework);
67
var key = new
GatherSingleCacheKey
(package, source, framework);
7 references to GatherSingleCacheKey
NuGet.PackageManagement (7)
Resolution\GatherCache.cs (7)
24
private readonly ConcurrentDictionary<
GatherSingleCacheKey
, SourcePackageDependencyInfo> _singleVersion
25
= new ConcurrentDictionary<
GatherSingleCacheKey
, SourcePackageDependencyInfo>();
40
var
key = new GatherSingleCacheKey(identity, source, framework);
67
var
key = new GatherSingleCacheKey(package, source, framework);
121
private class GatherSingleCacheKey : IEquatable<
GatherSingleCacheKey
>
139
public bool Equals(
GatherSingleCacheKey
other)
158
return Equals(obj as
GatherSingleCacheKey
);