What is the default location for MSBuild logs?

后端 未结 4 485
予麋鹿
予麋鹿 2020-12-08 08:50

I am using Visual Studio Express 2012. Where is the location of the log file? I have searched in the folder where my solution and projects are stored, but cannot find any .l

4条回答
  •  失恋的感觉
    2020-12-08 09:31

    Log file from Visual Studio is only supported for C++ projects. You just have to work with the output window for others.

    See this similar thread: VS2010: minimal build log in output and detailed log in log file

    And in case you happen to do this for a C++ project, the file is at:

    ... build log in the intermediate files directory ... The path and name of the build log is represented by the MSBuild macro expression, $(IntDir)\$(MSBuildProjectName).log.

提交回复
热议问题