我在msbuild中有构建脚本,将由powershell调用。
构建日志文件看起来像这样。
Build in 12/19/2011 2:01:54 PM。
构建成功。 0警告 0错误
时间流逝00:00:00.28
在起始点,它将指定构建执行启动时间,并指示时间已过去。
我想使用powershell或msbuild找到执行时间。如何添加所有时间过去的值或找到上次构建开始发生与第一次构建发生之间的差异?
因为它在日志文件中,我不知道如何检索和测量。
答案 0 :(得分:6)
请注意,如果使用Measure-Command {},它将使用构建的控制台输出。所以任何输出都会消失。
这种不太干扰的方法是简单地减去Get-Date值。例如,这是您的build.ps1脚本:
$before = Get-Date
<your build command line>
$after = Get-Date
$time = $after - $before
$buildTime = "`nBuild finished in ";
if ($time.Minutes -gt 0)
{
$buildTime += "{0} minute(s) " -f $time.Minutes;
}
$buildTime += "{0} second(s)" -f $time.Seconds;
答案 1 :(得分:5)
使用Measure-Commmand
查看构建过程需要多长时间。这是一个例子:
Measure-Command { ./build.ps1 }
我机器上的输出是:
PS D:\> Measure-Command { ./build.ps1 }
Days : 0
Hours : 0
Minutes : 0
Seconds : 6
Milliseconds : 443
Ticks : 64439301
TotalDays : 7.45825243055556E-05
TotalHours : 0.00178998058333333
TotalMinutes : 0.107398835
TotalSeconds : 6.4439301
TotalMilliseconds : 6443.9301