Add .travis.yml

pull/344/head
Halil ibrahim Kalkan 7 years ago
parent 2a045a0780
commit 993d58a25c

@ -0,0 +1,3 @@
language: csharp
script:
- pwsh "build-all.ps1"

@ -22,6 +22,10 @@ foreach ($solutionsPath in $solutionsPaths) {
$solutionAbsPath = (Join-Path $rootFolder $solutionsPath)
Set-Location $solutionAbsPath
dotnet build
if (-Not $?) {
Write-Host ("Build failed for the solution: " + $solutionsPath)
exit $LASTEXITCODE
}
}
Set-Location $rootFolder

Loading…
Cancel
Save