Skip to content
Merged
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions docs/core/tools/dotnet-environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,19 +167,19 @@ Configures the runtime to pause during startup and wait for the _Diagnostics IPC

### `DOTNET_EnableDiagnostics`

When set to `1`, enables debugging, profiling, and other diagnostics via the [Diagnostic Port](../diagnostics/diagnostic-port.md). Defaults to 1.
When set to `0`, disables debugging, profiling, and other diagnostics via the [Diagnostic Port](../diagnostics/diagnostic-port.md) and cannot be overriden by other diagnostics settings. Defaults to 1.

### `DOTNET_EnableDiagnostics_IPC`

Starting with .NET 8, when set to `1`, enables the [Diagnostic Port](../diagnostics/diagnostic-port.md). Defaults to 1.
Starting with .NET 8, when set to `0`, disables the [Diagnostic Port](../diagnostics/diagnostic-port.md) and cannot be overriden by other diagnostics settings. Defaults to 1.

### `DOTNET_EnableDiagnostics_Debugger`

Starting with .NET 8, when set to `1`, enables debugging. Defaults to 1.
Starting with .NET 8, when set to `0`, disables debugging and cannot be overriden by other diagnostics settings. Defaults to 1.

### `DOTNET_EnableDiagnostics_Profiler`

Starting with .NET 8, when set to `1`, enables profiling. Defaults to 1.
Starting with .NET 8, when set to `0`, disables profiling and cannot be overriden by other diagnostics settings. Defaults to 1.

### EventPipe variables

Expand Down