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.
精彩评论