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