pull/288/head
parent
57afbcf693
commit
8bd5521e69
3 changed files with 15 additions and 1 deletions
@ -0,0 +1,13 @@ |
|||||||
|
write-host `nRunning build. Please wait... |
||||||
|
|
||||||
|
$iterations = 10 |
||||||
|
|
||||||
|
for ($i=1; $i -le $iterations; $i++) |
||||||
|
{ |
||||||
|
$sw = [System.Diagnostics.StopWatch]::StartNew() |
||||||
|
& E:\dotnet-protobufs\build\BuildAll.bat |
||||||
|
$sw.Stop() |
||||||
|
$msbuildTotalRunTime += $sw.ElapsedMilliseconds |
||||||
|
} |
||||||
|
|
||||||
|
write-host `nMSBuild average speed over $iterations iterations: ($msbuildTotalRunTime/$iterations) milliseconds |
Loading…
Reference in new issue