Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force dotnet CLI in English on a French Windows

Tags:

.net-core

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?

like image 373
Martin Plante Avatar asked Dec 07 '22 14:12

Martin Plante


1 Answers

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]
like image 87
Martin Ullrich Avatar answered Mar 31 '23 23:03

Martin Ullrich