forked from marchello2000/bugsnag-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (24 loc) · 793 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 1.1.0.{build}
#---------------------------------#
# build configuration #
#---------------------------------#
# scripts to run before build
build_script:
ps: import-module ".\build\psake.psm1";invoke-psake ".\build\build.ps1"
# build script will run tests
test: off
#---------------------------------#
# artifacts configuration #
#---------------------------------#
artifacts:
# pushing entire folder as a zip archive
- path: build\output\bin
name: Bugsnag.$(APPVEYOR_BUILD_VERSION)
type: zip
# pushing all *.nupkg files in directory
- path: build\output\*.nupkg
name: Bugsnag.$(APPVEYOR_BUILD_VERSION)