开发者

Where does Visual Studio 2010 put the MSBuild logs?

开发者 https://www.devze.com 2023-02-24 00:01 出处:网络
Where does Visual Studio 2010 put the MSBuild logs? I\'m not even sure what they would be called. Any id开发者_运维知识库eas?

Where does Visual Studio 2010 put the MSBuild logs? I'm not even sure what they would be called. Any id开发者_运维知识库eas?

Edit: This is C#


When running VS from the command line you can use the /out switch to determine where the build logs should be placed. Sample:

devenv.exe /rebuild Release "MyProject.sln" /out "MyProject.log"

See MSDN

I have the feeling you mean "where does VS put the build logs when compiling from within VS" and not from the command line, but this might still help.


I believe that a log is only generated if you run devenv.exe with the /out switch and specify the log path.

0

精彩评论

暂无评论...
验证码 换一张
取 消