We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e2e56a commit 117c7cbCopy full SHA for 117c7cb
Libraries/Package.ps1
@@ -92,7 +92,8 @@ ForEach ($p in $client_projects) {
92
$packageDir = "$deploy_dir\packages"
93
Create-Directory $packageDir
94
95
- nuget pack $nuspecFile -OutputDirectory $packageDir -Version "$env:APPVEYOR_BUILD_VERSION" -Symbols
+ $nuget_version = $env:APPVEYOR_BUILD_VERSION + $env:VERSION_SUFFIX
96
+ nuget pack $nuspecFile -OutputDirectory $packageDir -Version $nuget_version -Symbols
97
}
98
99
Get-ChildItem $packageDir\*.nupkg | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
0 commit comments