我想知道是否有可能看到给编译器在Visual Studio 2012中构建项目的命令。我该如何实现?
(我参与了.Net C#项目)
答案 0 :(得分:5)
转到并将其更改为TOOLS -> Options -> Projects and Solutions -> Build and Run -> MSBuild project output verbosity -> Normal
然后,您会在Output
窗口中看到您想要的内容。
示例输出:
CoreCompile:
1> C:\Windows\Microsoft.NET\Framework\v4.0.30319\Csc.exe /noconfig /nowarn:1701,1702,2008 /nostdlib+ /errorreport:prompt /warn:4 /define:DEBUG;TRACE /errorendlocation ...
答案 1 :(得分:1)
使用Process Monitor查看Visual Studio使用的CSC.exe
命令。
答案 2 :(得分:0)
我不确定,但您是否在寻找command line building
答案 3 :(得分:0)
转到“输出”标签: 菜单 - >调试 - > Windows - >输出