Skip to content

Instantly share code, notes, and snippets.

@robie2011
Created October 31, 2023 09:28
Show Gist options
  • Save robie2011/82fdbc9c7b02d4c5098623f2a1c0003b to your computer and use it in GitHub Desktop.
Save robie2011/82fdbc9c7b02d4c5098623f2a1c0003b to your computer and use it in GitHub Desktop.
$Stats = @()
1..10 |% {
$i = $_
Write-Progress -Activity "Iteration $i" -Status "Cleanup" -PercentComplete ($i/10)
dotnet clean NakaOne.sln
Write-Progress -Activity "Iteration $i" -Status "Build" -PercentComplete ($i/10)
$Stats += Measure-Command { dotnet build NakaOne.sln }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment