Skip to content

Commit 926dd5c

Browse files
committed
nuget fix
1 parent f0fecda commit 926dd5c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

after_test_nuget-devel.ps1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
if($env:CONFIGURATION -eq "Release") # is not a pull request
2+
{
3+
cd $env:APPVEYOR_BUILD_FOLDER
4+
cd common
5+
nuget pack PCLExt.FileStorage.-develnuspec -Version $env:APPVEYOR_BUILD_VERSION
6+
Push-AppveyorArtifact "PCLExt.FileStorage.*.nupkg" -FileName nuget
7+
}

after_test_nuget.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ if($env:CONFIGURATION -eq "Release") # is not a pull request
22
{
33
cd $env:APPVEYOR_BUILD_FOLDER
44
cd common
5-
nuget pack -Version $env:APPVEYOR_BUILD_VERSION
5+
nuget pack PCLExt.FileStorage.nuspec -Version $env:APPVEYOR_BUILD_VERSION
66
Push-AppveyorArtifact "PCLExt.FileStorage.*.nupkg" -FileName nuget
77
}

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
- cd %APPVEYOR_BUILD_FOLDER%
143143
- ps: ./after_test_fx_core.ps1
144144
- cd %APPVEYOR_BUILD_FOLDER%
145-
- ps: ./after_test_nuget.ps1
145+
- ps: ./after_test_nuget-devel.ps1
146146

147147
deploy:
148148
provider: NuGet

0 commit comments

Comments
 (0)