-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
30 lines (22 loc) · 877 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
install:
- choco install gitversion.portable -pre -y
assembly_info:
patch: false
before_build:
- nuget restore
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
platform: Any CPU
configuration: Release
build:
project: MediatRedux.sln
after_build:
- cmd: ECHO nuget pack src\MediatRedux\MediatRedux.nuspec -version "%GitVersion_NuGetVersion%" -prop "target=%CONFIGURATION%" -Symbols
- cmd: nuget pack src\MediatRedux\MediatRedux.nuspec -version "%GitVersion_NuGetVersion%" -prop "target=%CONFIGURATION%" -Symbols
- cmd: appveyor PushArtifact "MediatRedux.%GitVersion_NuGetVersion%.nupkg"
- cmd: appveyor PushArtifact "MediatRedux.%GitVersion_NuGetVersion%.symbols.nupkg"
deploy:
provider: NuGet
api_key:
secure: 9XuJqRv9B28vNQtKSpBl0i9oUlFanzsBPYLsK2nlP4yk7SXUDFb6Pm97jVZtj6I1
skip_symbols: false
artifact: /.*\.nupkg/