Ian
Ian

Reputation: 4909

Where does Visual Studio 2010 put the MSBuild logs?

Where does Visual Studio 2010 put the MSBuild logs? I'm not even sure what they would be called. Any ideas?

Edit: This is C#

Upvotes: 6

Views: 3415

Answers (2)

Tom Juergens
Tom Juergens

Reputation: 4592

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.

Upvotes: 6

BRaul
BRaul

Reputation: 326

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

Upvotes: 3

Related Questions