123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- $scriptPath = split-path -parent $MyInvocation.MyCommand.Definition
- $configuration = "Release"
- $nuspecDir = Join-Path $scriptPath "NuSpecs"
- if (!(Test-Path .\nuget.exe)) {
- wget "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" -outfile .\nuget.exe
- }
- $msbuild = Get-ItemProperty "hklm:\SOFTWARE\Microsoft\MSBuild\ToolsVersions\14.0"
- # TODO: if not found, bail out
- $msbuildExe = Join-Path $msbuild.MSBuildToolsPath "msbuild.exe"
- # get version
- .\nuget.exe install -excludeversion -pre gitversion.commandline -outputdirectory packages
- .\packages\gitversion.commandline\tools\gitversion.exe /l console /output buildserver /updateassemblyinfo
- $versionObj = .\packages\gitversion.commandline\tools\gitversion.exe | ConvertFrom-Json
- $version = $versionObj.MajorMinorPatch
- $tag = $versionObj.PreReleaseLabel
- $preRelNum = $versionObj.CommitsSinceVersionSourcePadded
- if($tag -ne ""){
- $version = "$version-$tag-$preRelNum"
- }
- Write-Host "Version: $version"
- # Get Reference Generator
- .\nuget.exe install -excludeversion -pre NuSpec.ReferenceGenerator -outputdirectory packages
- Write-Host "Restoring packages" -Foreground Green
- dotnet restore $scriptPath | out-null
- #need to ensure core is built first due to bad dependency order determination by dotnet build
- $coreDir = gci $scriptPath -Directory | where-object {$_.Name -eq "System.Reactive.Core"} | Select -First 1
- dotnet build -c "$configuration" $coreDir.FullName
- Write-Host "Building projects" -Foreground Green
- $projects = gci $scriptPath -Directory `
- | Where-Object { ($_.Name -notlike "*DeviceRunner") -and (Test-Path (Join-Path $_.FullName "project.json")) } `
- foreach ($project in $projects) {
- dotnet build -c "$configuration" $project.FullName
-
- $ns = Join-Path $nuSpecDir "$($project.Name).nuspec"
-
- if(Test-Path $ns)
- {
- Write-Host "Invoking RefGen on $ns"
-
- $baseDir = Join-Path $project.FullName "bin" | join-path -ChildPath "$configuration"
- $projJson = Join-Path $project.FullName "project.json"
-
- Write-Host RefGen.exe generate-cross "-p" `"$projJson`" "-d" `"$baseDir`" "-l" `"$($project.Name).dll`" "-n" `"$ns`"
- .\packages\nuspec.referencegenerator\tools\RefGen.exe generate-cross -p "$projJson" -d "$baseDir" -l "$($project.Name).dll" -n "$ns"
- }
- }
- Write-Host "Building Packages" -Foreground Green
- $nuspecs = ls $nuspecDir\*.nuspec | Select -ExpandProperty FullName
- New-Item -ItemType Directory -Force -Path .\artifacts
- foreach ($nuspec in $nuspecs)
- {
- $symbolSwitch = "-symbols"
-
- # nuget will error if we pass -symbols to the meta-package
- if($nuSpec -like "*\System.Reactive.nuspec")
- {
- $symbolSwitch = ""
- }
-
- .\nuget pack $nuspec $symbolSwitch -Version $version -Properties "Configuration=$configuration" -MinClientVersion 2.8.6 -outputdirectory .\artifacts
- }
- Write-Host "Running tests" -Foreground Green
- $testDirectory = Join-Path $scriptPath "Tests.System.Reactive"
- dotnet test $testDirectory -c "$configuration"
- Write-Host "Reverting AssemblyInfo's" -Foreground Green
- gci $scriptPath -re -in AssemblyInfo.cs | %{ git checkout $_ }
|