Browse Source

Go to the root folder on a build error

pull/705/head
Halil ibrahim Kalkan 7 years ago
parent
commit
04c0776346
  1. 1
      build-all.ps1

1
build-all.ps1

@ -31,6 +31,7 @@ foreach ($solutionPath in $solutionPaths) {
dotnet build
if (-Not $?) {
Write-Host ("Build failed for the solution: " + $solutionPath)
Set-Location $rootFolder
exit $LASTEXITCODE
}
}

Loading…
Cancel
Save