Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information.

namespace Microsoft.VisualStudio.FSharp.Editor

open System
open System.Collections.Generic
open System.Collections.Concurrent
Expand Down Expand Up @@ -216,7 +216,7 @@ type private FSharpProjectOptionsReactor (workspace: Workspace, settings: Editor

if not (Seq.isEmpty projectsToClearCache) then
projectsToClearCache
|> Seq.iter (fun pair -> cache.Remove pair.Key |> ignore)
|> Seq.iter (fun pair -> cache.TryRemove pair.Key |> ignore)
let options =
projectsToClearCache
|> Seq.map (fun pair ->
Expand Down