build.ps1 374 B

123456789101112
  1. $repositoryRoot = split-path $MyInvocation.MyCommand.Definition
  2. Write-Host "Building Rx.NET" -ForegroundColor Green
  3. .\Rx.NET\Source\build-new
  4. Write-Host "Building Ix.NET" -ForegroundColor Green
  5. .\Ix.NET\Source\build-new
  6. if ($env:CI -ne 'True') {
  7. Write-Host "Reverting AssemblyInfo's" -Foreground Green
  8. gci $scriptPath -re -in AssemblyInfo.cs | %{ git checkout $_ }
  9. }