-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
48 lines (41 loc) · 1.73 KB
/
appveyor.yml
File metadata and controls
48 lines (41 loc) · 1.73 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
version: 1.0.{build}
build:
project: YellowDrawer.Storage.sln
publish_nuget: true
publish_nuget_symbols: true
include_nuget_references: true
verbosity: minimal
after_build:
- nuget pack src\YellowDrawer.Storage.Azure\YellowDrawer.Storage.Azure.nuspec -Version "%APPVEYOR_BUILD_VERSION%" -OutputDirectory src\YellowDrawer.Storage.Azure
- nuget pack src\YellowDrawer.Storage.Amazon\YellowDrawer.Storage.Amazon.nuspec -Version "%APPVEYOR_BUILD_VERSION%" -OutputDirectory src\YellowDrawer.Storage.Amazon
- nuget pack src\YellowDrawer.Storage.GridFS\YellowDrawer.Storage.GridFS.nuspec -Version "%APPVEYOR_BUILD_VERSION%" -OutputDirectory src\YellowDrawer.Storage.GridFS
- nuget pack src\YellowDrawer.Storage.Common\YellowDrawer.Storage.Common.nuspec -Version "%APPVEYOR_BUILD_VERSION%" -OutputDirectory src\YellowDrawer.Storage.Common
image: Visual Studio 2017
test:
categories:
except:
- Unit
artifacts:
- path: 'src\YellowDrawer.Storage.Azure\*.nupkg'
name: YellowDrawer.Storage.Azure
- path: 'src\YellowDrawer.Storage.Amazon\*.nupkg'
name: YellowDrawer.Storage.Amazon
- path: 'src\YellowDrawer.Storage.GridFS\*.nupkg'
name: YellowDrawer.Storage.GridFS
- path: 'src\YellowDrawer.Storage.Common\*.nupkg'
name: YellowDrawer.Storage.Common
install:
- nuget restore YellowDrawer.Storage.sln
deploy:
- provider: NuGet
api_key: fa0bd176-3bdd-49d9-afd1-635b1965fa13
artifact: YellowDrawer.Storage.Azure
- provider: NuGet
api_key: fa0bd176-3bdd-49d9-afd1-635b1965fa13
artifact: YellowDrawer.Storage.Amazon
- provider: NuGet
api_key: fa0bd176-3bdd-49d9-afd1-635b1965fa13
artifact: YellowDrawer.Storage.GridFS
- provider: NuGet
api_key: fa0bd176-3bdd-49d9-afd1-635b1965fa13
artifact: YellowDrawer.Storage.Common