Show MSBuild command during build or package in Visual Studio IDE output window?

When Visual Studio build or package Solution, the output window comes with

------ Build started: XXXX...

But can I see the actual command to start MSBuild with each switch that is configured in Project / Solution? For instance,

 c:\xxx\yyy\MSBuild.exe /t:compile /switches ... ------ Build started: XXXX... 

I want to create a script to automate the packaging process. I can create it myself, but it would be useful if I saw it.

+4
source share

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


All Articles