I'm using VS 2015, if that matters.
If I use MSbuild on a project in my solution on the command line, I can of course specify a number of switches to alter the behavior and output. However, the build called from within Visual Studio is not controlled with switches, but by setting various properties in the IDE.
The output from MSbuild in VS is minimal. It shows errors and warnings and what failed and what succeeded. The output from MSBuild on the command line shows more information.
How do I know when I have selected command line options that exactly mimic what is happening when inside Visual studio? How can I get visual studio to give me the same output I get when using MSBuild on the command line?
Many thanks.