1 write to _equivalentFrameworks
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
Nuget.Frameworks\FrameworkNameProvider.cs (1)
95
_equivalentFrameworks
= new Dictionary<NuGetFramework, HashSet<NuGetFramework>>();
8 references to _equivalentFrameworks
Microsoft.VisualStudio.TestPlatform.ObjectModel (8)
Nuget.Frameworks\FrameworkNameProvider.cs (8)
371
if (
_equivalentFrameworks
.TryGetValue(current, out HashSet<NuGetFramework>? currentEquivalent))
413
if (
_equivalentFrameworks
.TryGetValue(current!, out HashSet<NuGetFramework>? curFrameworks))
561
if (
_equivalentFrameworks
.TryGetValue(framework, out HashSet<NuGetFramework>? eqFrameworks))
603
foreach (var framework in
_equivalentFrameworks
.Keys.Where(f => range.Satisfies(f)))
814
if (!
_equivalentFrameworks
.TryGetValue(next, out HashSet<NuGetFramework>? eqFrameworks))
818
_equivalentFrameworks
.Add(next, eqFrameworks);
837
_equivalentFrameworks
[framework].Add(other);
1094
foreach (var framework in
_equivalentFrameworks
.Values.SelectMany(x => x))