Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.

Commit 147e1d8

Browse files
authored
Enable parallelism for VS find-all-refs (dotnet#12107)
1 parent 0db9bc5 commit 147e1d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LanguageService/SymbolHelpers.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module internal SymbolHelpers =
3939
let getSymbolUsesInProjects (symbol: FSharpSymbol, projects: Project list, onFound: Document -> TextSpan -> range -> Async<unit>) =
4040
projects
4141
|> Seq.map (fun project -> project.FindFSharpReferencesAsync(symbol, onFound, "getSymbolUsesInProjects"))
42-
|> Async.Sequential
42+
|> Async.Parallel
4343

4444
let getSymbolUsesInSolution (symbol: FSharpSymbol, declLoc: SymbolDeclarationLocation, checkFileResults: FSharpCheckFileResults, solution: Solution) =
4545
async {

0 commit comments

Comments
 (0)