Skip to content

Commit

Permalink
Missing options (#20)
Browse files Browse the repository at this point in the history
* Adds FSharp.fsac.cachedTypeCheckCount

* Adds FSharp.notifications options
  • Loading branch information
TheAngryByrd authored Mar 28, 2023
1 parent d5ce317 commit ae7e457
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions content/Editors/Code/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,16 @@ Appends the '--attachdebugger' argument to fsac, this will allow you to attach a

---

#### `FSharp.fsac.cachedTypeCheckCount`

The [MemoryCacheOptions.SizeLimit](https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.caching.memory.memorycacheoptions.sizelimit?view=dotnet-plat-ext-7.0) for caching typechecks.

**Type:** `integer`

**Default:** `200`

---


#### `FSharp.fsac.conserveMemory`

Expand Down Expand Up @@ -562,6 +572,32 @@ Logs additional information to F# output channel. This is equivalent to passing

---


#### `FSharp.notifications.trace`

Enables more verbose notifications using System.Diagnostics.Activity to view traces from FSharp.Compiler.Service.

**Type:** `bool`

**Default:** `false`

---
#### `FSharp.notifications.traceNamespaces`

The set of System.Diagnostics.Activity names to watch.

**Type:** `string array`

**Default:**
```json
[
"BoundModel.TypeCheck",
"BackgroundCompiler."
]
```

---

#### `FAKE.targetsOutline`

Enables the Targets Outline tree view.
Expand Down

0 comments on commit ae7e457

Please sign in to comment.