Fixing NuGet on the build server

This commit is contained in:
Rikki Tooley 2015-05-01 10:50:01 +01:00
parent e20378a1fe
commit 02e85e4da4
2 changed files with 20 additions and 14 deletions

View File

@ -2,18 +2,6 @@ param(
[string] $versionSuffix [string] $versionSuffix
) )
. ".\Package-Versions.ps1"
$root = (split-path -parent $MyInvocation.MyCommand.Definition) + '\..'
$version = [System.Reflection.AssemblyName]::GetAssemblyName($dllPath).Version
if ($versionSuffix) {
$versionStr = "{0}.{1}.{2}-{3}" -f ($version.Major, $version.Minor, $version.Build, $versionSuffix)
}
else {
$versionStr = $version.ToString()
}
function CompileNuspec([string]$dllPath, [string]$nuspecname) function CompileNuspec([string]$dllPath, [string]$nuspecname)
{ {
Write-Host "Setting $nuspecname .nuspec version tag to $versionStr" -Foreground green Write-Host "Setting $nuspecname .nuspec version tag to $versionStr" -Foreground green
@ -26,7 +14,21 @@ function CompileNuspec([string]$dllPath, [string]$nuspecname)
& $root\.nuget\NuGet.exe pack "$root\.nuget\$nuspecname.$versionStr.compiled.nuspec" & $root\.nuget\NuGet.exe pack "$root\.nuget\$nuspecname.$versionStr.compiled.nuspec"
} }
CompileNuspec "$root\src\IF.Lastfm.Core\bin\Release\IF.Lastfm.Core.dll" "Inflatable.Lastfm" . ".\Package-Versions.ps1"
$root = (split-path -parent $MyInvocation.MyCommand.Definition) + '\..'
$dllPath = "$root\src\IF.Lastfm.Core\bin\Release\IF.Lastfm.Core.dll"
$version = [System.Reflection.AssemblyName]::GetAssemblyName($dllPath).Version
if ($versionSuffix) {
$versionStr = "{0}.{1}.{2}-{3}" -f ($version.Major, $version.Minor, $version.Build, $versionSuffix)
}
else {
$versionStr = $version.ToString()
}
CompileNuspec $dllPath "Inflatable.Lastfm"
if ([string]::IsNullOrEmpty($sqliteVersion)){ if ([string]::IsNullOrEmpty($sqliteVersion)){
Write-Host "Couldn't read version to use for SQLite package" -Foreground red Write-Host "Couldn't read version to use for SQLite package" -Foreground red

View File

@ -24,7 +24,9 @@
- ps: .\run-tests.ps1 - ps: .\run-tests.ps1
after_test: after_test:
- ps: .nuget\pack.ps1 -versionSuffix prerelease - ps: pushd .nuget
- ps: .\pack.ps1 -versionSuffix prerelease
- ps: popd
artifacts: artifacts:
- path: src\IF.Lastfm.Core\bin\Release\IF.Lastfm.Core.dll - path: src\IF.Lastfm.Core\bin\Release\IF.Lastfm.Core.dll
@ -66,7 +68,9 @@
- ps: .\run-tests.ps1 - ps: .\run-tests.ps1
after_test: after_test:
- ps: pushd .nuget
- ps: .nuget\pack.ps1 - ps: .nuget\pack.ps1
- ps: popd
artifacts: artifacts:
- path: src\IF.Lastfm.Core\bin\Release\IF.Lastfm.Core.dll - path: src\IF.Lastfm.Core\bin\Release\IF.Lastfm.Core.dll