File tree Expand file tree Collapse file tree 1 file changed +17
-6
lines changed
Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ branches:
33 only :
44 - master
55skip_tags : true
6- configuration : Release
76platform : Any CPU
87assembly_info :
98 patch : true
@@ -12,12 +11,24 @@ assembly_info:
1211 assembly_file_version : ' {version}'
1312 assembly_informational_version : ' {version}'
1413build :
15- publish_nuget : true
16- publish_nuget_symbols : true
14+ project : BuildAllConfigurations.proj
1715 verbosity : normal
16+ after_build :
17+ - ps : >-
18+ Write-Host $env:APPVEYOR_BUILD_FOLDER
19+
20+ cd $env:APPVEYOR_BUILD_FOLDER
21+
22+ cd '.nuget'
23+
24+ ./nuget.exe pack '..\SQLite.CodeFirst\SQLite.CodeFirst.csproj' -Properties -Symbols -OutputDirectory '..\SQLite.CodeFirst\bin'
1825artifacts :
19- - path : SQLite.CodeFirst\bin\*\SQLite.CodeFirst.dll
20- name : SQLiteCodeFirst
26+ - path : SQLite.CodeFirst\bin\Debug**\SQLite.CodeFirst.*
27+ name : Debug
28+ - path : SQLite.CodeFirst\bin\Release\**\SQLite.CodeFirst.dll
29+ name : Release
30+ - path : SQLite.CodeFirst\bin\*.nupkg
31+ name : NuPkg
2132deploy :
2233- provider : NuGet
2334 api_key :
@@ -30,7 +41,7 @@ deploy:
3041 description : https://www.nuget.org/packages/SQLite.CodeFirst/
3142 auth_token :
3243 secure : e3cqaFy9PzI9TAdZJBIDy97Bfbwa7j0EXe2yw7Ev9aJXK0Q+3mnULqb1VU4P7BWR
33- artifact : SQLiteCodeFirst
44+ artifact : Release
3445 draft : true
3546 on :
3647 branch : master
You can’t perform that action at this time.
0 commit comments