Is there a way to get the build command line used by Visual Studio?

徘徊边缘 提交于 2019-11-28 22:44:09
acfrancis

When you build a project or solution in Visual Studio, the entire command line used to run the compiler (csc.exe, including switches and parameters) is displayed in the Output window. If you don't see it there, check the Verbosity level by going to:

Options > Projects and Solutions > Build and Run > MSBuild project build output verbosity

(You may need to choose "Show all settings")

It has to be set to "Normal" or higher. Check this question and answer for more details:

To see all command line on output window while compiling

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!