How to change MSBuild error message language?

前端 未结 8 1035
渐次进展
渐次进展 2020-12-31 07:33

I\'m on a Japanese system and when I run MsBuild.exe to build a Visual Studio project, I get a mix of Japanese and English in the output:

C:\\path\\to\\solut         


        
8条回答
  •  再見小時候
    2020-12-31 07:52

    To change the language of MSBuild's output to English, simply call chcp 850 in the same console before actual call of MSBuild. It changes console's code page and MSBuild uses it.

提交回复
热议问题