1 implementation of IsCompatible
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
Nuget.Frameworks\CompatibilityProvider.cs (1)
31public bool IsCompatible(NuGetFramework target, NuGetFramework candidate)
5 references to IsCompatible
Microsoft.VisualStudio.TestPlatform.ObjectModel (5)
Nuget.Frameworks\FrameworkReducer.cs (3)
85var compatible = possibleFrameworks.Where(f => _compat.IsCompatible(framework, f)); 280return ReduceCore(frameworks, (x, y) => _compat.IsCompatible(y, x)).ToArray(); 298return ReduceCore(frameworks, (x, y) => _compat.IsCompatible(x, y)).ToArray();
Nuget.Frameworks\NuGetFrameworkUtility.cs (2)
103var compatible = DefaultCompatibilityProvider.Instance.IsCompatible(projectFramework, candidate); 113compatible = DefaultCompatibilityProvider.Instance.IsCompatible(supportFramework, candidate);