Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge main to release/dev17.11 #17038

Merged
merged 10 commits into from
Apr 12, 2024
Prev Previous commit
Next Next commit
Fix MEF issues with options (#17015)
It seems something changed about MEF import w.r.t. private members.
  • Loading branch information
vzarytovskii authored Apr 11, 2024
commit 3c8490cc96c4f166cdb8d158b0e142114c826a78
2 changes: 1 addition & 1 deletion vsintegration/src/FSharp.Editor/Options/EditorOptions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ type EditorOptions() =
member _.Formatting: FormattingOptions = store.Get()

[<Export(typeof<SettingsStore.ISettingsStore>)>]
member private _.SettingsStore = store
member _.SettingsStore = store

member _.With value = store.Register value

Expand Down
Loading