-
Notifications
You must be signed in to change notification settings - Fork 10
/
appveyor.yml
41 lines (30 loc) · 846 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
32
33
34
35
36
37
38
39
40
41
os: Visual Studio 2017
version: 0.6.0.{build}
configuration: Release
# Do not build on tags (GitHub only)
skip_tags: true
# Do not build when changing these files
skip_commits:
files:
- LICENSE.md
- README.md
branches:
only:
- release
init:
- git config --global core.autocrlf input
before_build:
- dotnet --info
- nuget restore
build:
parallel: true # enable MSBuild parallel builds
project: Cashew.sln # path to Visual Studio solution or project
verbosity: normal
after_build:
- dotnet pack .\src\Cashew\Cashew.csproj --configuration Release
- dotnet pack .\src\Cashew.Adapters.CacheManager\Cashew.Adapters.CacheManager.csproj --configuration Release
test:
assemblies:
- '**\*.Tests.dll'
artifacts:
- path: '**\Cashew.*.nupkg' # find all NuGet packages recursively