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

Remove --background-service-enabled CLI option #952

Merged
merged 1 commit into from
Oct 14, 2022
Merged
Show file tree
Hide file tree
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
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ Custom endpoints are using (for messages body) `PlainNotification` type and stri
### Additional startup options

* `--state-directory dir` - a workspace-specific directory for keeping language server states.
* `--background-service-enabled` - passing this flag enables background service feature, increasing FSAC responsiveness by moving some of the operations (especially background type checking) to other process. It results in increased memory usage. Used by default in Ionide.
* `--verbose` - passing this flag enables additional logging being printed out in `stderr`
* `DOTNET_ROOT` - setting this environment variable will set the dotnet SDK root, which is used when finding references for FSX scripts.

Expand Down Expand Up @@ -178,8 +177,6 @@ The maintainers of this repository are:
* [Krzysztof Cieślak](http://github.com/Krzysztof-Cieslak)
* [Chester Husk](http://github.com/baronfel)

The primary maintainer for this repository is [Krzysztof Cieślak](http://github.com/Krzysztof-Cieslak))

Previous maintainers:

* [Robin Neatherway](https://github.com/rneatherway)
Expand Down
8 changes: 0 additions & 8 deletions src/FsAutoComplete/Parser.fs
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,6 @@ module Parser =
)
|> zero

let backgroundServiceOption =
Option<bool>(
"--background-service-enabled",
"Enable running typechecking services in a background process. Enables various performance optimizations."
)
|> zero

let projectGraphOption =
Option<bool>(
"--project-graph-enabled",
Expand All @@ -104,7 +97,6 @@ module Parser =
rootCommand.AddOption logFileOption
rootCommand.AddOption logFilterOption
rootCommand.AddOption waitForDebuggerOption
rootCommand.AddOption backgroundServiceOption
rootCommand.AddOption projectGraphOption
rootCommand.AddOption logLevelOption
rootCommand.AddOption stateLocationOption
Expand Down