You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make dotnet --info print all DOTNET_* environment variables (#117797)
`dotnet --info` currently only prints `DOTNET_ROOT` / `DOTNET_ROOT_<ARCH>` if they are set. Expand it to all environment variables with a `DOTNET_` prefix. Also add a line about detecting COMPlus_* variables.
Example:
```
Environment variables:
DOTNET_ROLL_FORWARD [Major]
DOTNET_ROOT [C:\repos\runtime\.dotnet]
DOTNET_SKIP_FIRST_TIME_EXPERIENCE [1]
Detected COMPlus_* environment variable(s). Consider transitioning to DOTNET_* equivalent.
```
0 commit comments