What parameters does Visual Studio pass to MSBuild?
First off, you can run msbuild with the /v:diag
argument to get diagnostic-level logging. This can really help in figuring out why a build is failing.
Otherwise, yes, if you use Process Monitor, you can monitor for process start events where you can see the specific command-line sent to the process.
Specifically:
- Run Process Monitor
- Filter » Filter...
Operation
is
Process Create
» AddOperation
is
Process Start
» Add- OK
- Run your build through VS and through command-line msbuild
- See the command-line arguments in the Detail column
Visual Studio does not execute MSBuild.exe
, but hosts the build engine itself (by means of the Microsoft.Build.*
assemblies) - at least that is the case for the default C# project system. Other languages, addins, packages, etc. might do it differently.
Actually, there was a post series on the Microsoft blogs about this, I'm trying to find them and update this answer.
UPDATE: Found it again. Look for the "MSBuild in Visual Studio" posts here.
Concerning your original question, this page might help you further. Also you could go to "Tools", "Options", "Projects and Solutions", "Build and Run" and increase the MSBuild output verbosity. With "Diagnostic" you should basically see every property that is set upon starting the build.