1
18
为了完整起见,正确的答案是“不,您不能直接在Visual Studio中报告解决方案的总构建时间”。 |
2
17
不是本地的,也不是针对vs 2008(目前仅针对vs 2010),但是 the VSCommands 2010 extension 提供这些统计信息。 参见: VS 2010: Prevent display of Build Summary in the output window |
3
11
当从命令提示符运行时,msbuild将显示总的生成时间,例如:
|
4
8
在Visual Studio 2010中,还有一种简单的方法可以测量每个项目的生成时间。我非常肯定它也能在Visual Studio 2008中工作。你所要做的就是去 工具->选项->项目和解决方案->生成并运行 并将msbuild项目的build输出详细度设置为“normal”或“detailed”(我建议“normal”,因为detailed提供了太多信息)。 |
5
3
我想你可以加入OnBuildBegin和OnBuildDone事件 http://visualstudiohacks.com/general/customize-your-project-build-process/ |
6
1
在VC++2008中,工具/选项/项目和解决方案/VC++项目设置中有“构建时间”选项 |
Rodney · 如何在Ionic2构建脚本中运行copy命令 7 年前 |