Where does Visual Studio 2010 place MSBuild logs?

I don’t even know what they will be called. Any ideas?

thanks

Edit: this is C #

+6
source share
2 answers

When starting VS from the command line, you can use the /out switch to determine where assembly logs should be placed. Example:

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

See MSDN

I have a feeling that you mean "where VS puts assembly logs when compiling from VS", and not from the command line, but this can help.

+6
source

I believe that the log is only generated when devenv.exe is started using the / out switch and specifying the log path.

+3
source

Source: https://habr.com/ru/post/885653/


All Articles