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 d6377f5 commit d37e885Copy full SHA for d37e885
appveyor.yml
@@ -1,13 +1,12 @@
1
version: '{build}'
2
image: Visual Studio 2017
3
configuration: Release
4
-branches:
5
- only:
6
- - master
7
- - alpha
8
build_script:
9
- ps: . .\build.ps1
10
test: off
11
artifacts:
12
-- path: src\Twilio\bin\Release\Twilio.*.nupkg
13
- name: Package
+- path: .\Twilio.*.nupkg
+branches:
+ only:
+ - master
+ - alpha
build.ps1
@@ -44,3 +44,6 @@ if ($lastExitCode -ne 0) { exit $lastExitCode }
44
45
msbuild .\src\Twilio\Twilio.csproj /t:pack /p:Configuration=Release /verbosity:minimal
46
if ($lastExitCode -ne 0) { exit $lastExitCode }
47
+
48
+Move-Item src\Twilio\bin\Release\Twilio.*.nupkg .\
49
+if ($lastExitCode -ne 0) { exit $lastExitCode }
0 commit comments