提交 9ddd1300 编写于 作者: C Cyrus Najmabadi

Update comment.

上级 e355099c
......@@ -253,7 +253,10 @@ private static string GetTitle(Scope scope)
foreach (var group in documentsToUpdate.GroupBy(d => d.Document.Project))
{
// grab the compilation and keep it around as long as we're processing
// the project so we don't clean things up in the middle.
// the project so we don't clean things up in the middle. To do this
// we use a GC.KeepAlive below so that we can mark that this compilation
// should stay around (even though we don't reference is directly in
// any other way here).
var project = group.Key;
var compilation = await project.GetCompilationAsync(cancellationToken).ConfigureAwait(false);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册