提交 35ab307e 编写于 作者: S Sam Harwell

Remove workaround for persistent errors

Closes #32121
上级 07eee6e9
......@@ -103,14 +103,6 @@ public static IEnumerable<IVsTaskItem> AsEnumerable(this IVsEnumTaskItems items)
break;
}
// BEGIN WORKAROUND FOR https://github.com/dotnet/roslyn/issues/32121
// Filter out items not belonging to a currently-open project
if (ErrorHandler.Failed(((IVsErrorItem)item[0]).GetHierarchy(out _)))
{
continue;
}
// END WORKAROUND FOR https://github.com/dotnet/roslyn/issues/32121
yield return item[0];
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册