This commit is contained in:
bao-qian
2016-05-09 03:26:19 +01:00
parent 7dd9b3fa0c
commit ad2e8a3c96

View File

@@ -5,7 +5,8 @@ Write-Host "Current path: " + $currentPath
$path = $env:APPVEYOR_BUILD_FOLDER + "\Deploy\wox.nuspec"
Write-Host "nuspec path: " + $path
& nuget.exe pack $path -Version $env:APPVEYOR_BUILD_VERSION -Properties Configuration=Release
$releasePath = $env:APPVEYOR_BUILD_FOLDER + "\Output\Release"
& nuget.exe pack $path -Version $env:APPVEYOR_BUILD_VERSION -Properties Configuration=Release -BasePath $releasePath
$nupkgPath = $env:APPVEYOR_BUILD_FOLDER + "\Wox." + $env:APPVEYOR_BUILD_VERSION + ".nupkg"
Write-Host "nupkg path: " + $nupkgPath