Skip to content

v0.73.1

Compare
Choose a tag to compare
@github-actions github-actions released this 23 May 15:36
· 16 commits to main since this release

Added

  • New, explicit FSI settings for editor analysis and FSI invocation (thanks @greggyb!)
    • Before, FSharp.FSIExtraParameters was used for both script analysis in the LSP as well as launching FSI instances in editors. Some FSI options are only intended to be used for direct FSI invocation (see docs for more details) and so break editor analysis. We've introduced two settings to separate these concerns. If the old setting is provided along either of the new options, the old setting will be used but a warning message will be shown in the editor.
      • FSharp.FSIExtraInteractiveParameters is now used for launching FSI instances in editors
      • FSharp.FSIExtraSharedParameters is used for editor analysis
    • An editor should concatenate these together when launching an FSI instance. In a future release, we will be deprecating/removing the FSharp.FSIExtraParameters setting.

Changed