Skip to content
This repository was archived by the owner on Jul 21, 2020. It is now read-only.

Commit 784fd46

Browse files
committed
fix C# build on linux, ConcurrentBag is not x-domain friendly on Mono
1 parent 71d4b45 commit 784fd46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runner/RefactorHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ where string.CompareOrdinal(node.Identifier.ValueText, method.Name) == 0
9292
filesChanged.Add(f);
9393
}
9494
});
95-
return filesChanged;
95+
return filesChanged.ToArray();
9696
}
9797

9898
private static ParameterListSyntax ReplaceParameters(MethodDeclarationSyntax methodDeclarationSyntax,

0 commit comments

Comments
 (0)