forked from ocinbat/Sillycore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
57 lines (43 loc) · 1.94 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
version: 1.0.{build}
build_script:
- ps: >-
dotnet build Sillycore/Sillycore.csproj
dotnet build Sillycore.Web/Sillycore.Web.csproj
dotnet build Sillycore.AppMetrics/Sillycore.AppMetrics.csproj
dotnet build Sillycore.NLog/Sillycore.NLog.csproj
dotnet build Sillycore.EntityFramework/Sillycore.EntityFramework.csproj
dotnet build Sillycore.RabbitMq/Sillycore.RabbitMq.csproj
dotnet build Sillycore.RestClient/Sillycore.RestClient.csproj
dotnet build Sillycore.Daemon/Sillycore.Daemon.csproj
after_test:
- ps: >-
dotnet pack Sillycore/Sillycore.csproj -c Release --include-symbols
dotnet pack Sillycore.Web/Sillycore.Web.csproj -c Release --include-symbols
dotnet pack Sillycore.AppMetrics/Sillycore.AppMetrics.csproj -c Release --include-symbols
dotnet pack Sillycore.NLog/Sillycore.NLog.csproj -c Release --include-symbols
dotnet pack Sillycore.EntityFramework/Sillycore.EntityFramework.csproj -c Release --include-symbols
dotnet pack Sillycore.RabbitMq/Sillycore.RabbitMq.csproj -c Release --include-symbols
dotnet pack Sillycore.RestClient/Sillycore.RestClient.csproj -c Release --include-symbols
dotnet pack Sillycore.Daemon/Sillycore.Daemon.csproj -c Release --include-symbols
artifacts:
- path: Sillycore/bin/Release/*.nupkg
name: Sillycore
- path: Sillycore.Web/bin/Release/*.nupkg
name: Sillycore.Web
- path: Sillycore.AppMetrics/bin/Release/*.nupkg
name: Sillycore.AppMetrics
- path: Sillycore.NLog/bin/Release/*.nupkg
name: Sillycore.NLog
- path: Sillycore.EntityFramework/bin/Release/*.nupkg
name: Sillycore.EntityFramework
- path: Sillycore.RabbitMq/bin/Release/*.nupkg
name: Sillycore.RabbitMq
- path: Sillycore.RestClient/bin/Release/*.nupkg
name: Sillycore.RestClient
- path: Sillycore.Daemon/bin/Release/*.nupkg
name: Sillycore.Daemon
deploy:
- provider: NuGet
api_key:
secure: HatA8lH7GwAGuVEwLUL8mYA29zB8SD+GfYZv2sowexXoJ9fezoT9F7xlZ7YeT7Eg
skip_symbols: true