public static bool IsNetStandardOrNetCoreApp(this TargetFrameworkMoniker framework) { return(framework.IsNetStandard() || framework.IsNetCoreApp()); }
public static bool IsNetStandardOrHigher(this TargetFrameworkMoniker framework, DotNetCoreVersion version) { return(framework.IsNetStandard() && framework.IsVersionOrHigher(version)); }