We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdcedc1 commit af861e0Copy full SHA for af861e0
src/Compiler/Service/service.fs
@@ -1244,7 +1244,12 @@ type BackgroundCompiler
1244
1245
lock gate (fun () ->
1246
options
1247
- |> Seq.iter (fun options -> incrementalBuildersCache.RemoveAnySimilar(AnyCallerThread, options)))
+ |> Seq.iter (fun options ->
1248
+ incrementalBuildersCache.RemoveAnySimilar(AnyCallerThread, options)
1249
+
1250
+ parseCacheLock.AcquireLock(fun ltok ->
1251
+ for sourceFile in options.SourceFiles do
1252
+ checkFileInProjectCache.RemoveAnySimilar(ltok, (sourceFile, 0L, options)))))
1253
1254
member _.NotifyProjectCleaned(options: FSharpProjectOptions, userOpName) =
1255
use _ =
0 commit comments