1 instantiation of CompatibilityCacheKey
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
Nuget.Frameworks\CompatibilityProvider.cs (1)
37
var cacheKey = new
CompatibilityCacheKey
(target, candidate);
6 references to CompatibilityCacheKey
Microsoft.VisualStudio.TestPlatform.ObjectModel (6)
Nuget.Frameworks\CompatibilityCacheKey.cs (3)
13
internal readonly struct CompatibilityCacheKey : IEquatable<
CompatibilityCacheKey
>
48
public bool Equals(
CompatibilityCacheKey
other)
56
return obj is
CompatibilityCacheKey
other && Equals(other);
Nuget.Frameworks\CompatibilityProvider.cs (3)
16
private readonly ConcurrentDictionary<
CompatibilityCacheKey
, bool> _cache;
22
_cache = new ConcurrentDictionary<
CompatibilityCacheKey
, bool>();
37
var
cacheKey = new CompatibilityCacheKey(target, candidate);