Search code examples
.net-core

Force dotnet CLI in English on a French Windows


I'm French, and like to have the Windows UI in French, but all my dev tools in English.

The dotnet CLI tool displays its output in French, and I'd like to force it to English. Is it possible?


Solution

  • You can use the DOTNET_CLI_UI_LANGUAGE environment variable to override the language used by the dotnetCLI:

    > set DOTNET_CLI_UI_LANGUAGE=en
    > dotnet --help
    …
    [english content]