We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c62e89c commit 4431af5Copy full SHA for 4431af5
1 file changed
src/Compiler/Driver/CompilerImports.fs
@@ -2156,8 +2156,15 @@ and [<Sealed>] TcImports
2156
let runInParallel =
2157
Environment.GetEnvironmentVariable("FCS_PARALLEL_PROJECTS_ANALYSIS")
2158
|> bool.TryParse
2159
- |> function | true, runInParallel -> runInParallel | false, _ -> false
2160
- let runMethod = if runInParallel then NodeCode.Parallel else NodeCode.Sequential
+ |> function
+ | true, runInParallel -> runInParallel
2161
+ | false, _ -> false
2162
+
2163
+ let runMethod =
2164
+ if runInParallel then
2165
+ NodeCode.Parallel
2166
+ else
2167
+ NodeCode.Sequential
2168
2169
let! results =
2170
nms
0 commit comments