views:

58

answers:

1

Hello,

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\solution>C:\WINDOWS\Microsoft.NET\Framework\v3.5\msbuild.exe solution.sln
Microsoft (R) Build Engine Version 3.5.30729.1
[Microsoft .NET Framework, Version 2.0.50727.3082]
Copyright (C) Microsoft Corporation 2007. All rights reserved.

Build started 2/18/2010 1:03:04 PM.
Project "C:\path\to\solution.sln" on node 0 (default targets).
  Building solution configuration "Debug|Win32".
プロジェクト : warning PRJ0018: 以下の環境変数が見つかりませんでした:

How can I change it all back to English?

Thanks!

A: 

I suspect that message is coming from the compiler to your project, not the msbuild itself. But I don't know how to change it.

Preet Sangha
Would that be cl.exe?
Laurent
depends on the language c/C++ = cl.exe, c# = csc.exe, vb = vbc.exe
Preet Sangha