1- # Notes:
2- # - Minimal appveyor.yml file is an empty file. All sections are optional.
3- # - Indent each level of configuration with 2 spaces. Do not use tabs!
4- # - All section names are case-sensitive.
5- # - Section names should be unique on each level.
6-
7- # Base Sample: http://www.appveyor.com/docs/appveyor-yml
8-
9- # ---------------------------------#
10- # general configuration #
11- # ---------------------------------#
12-
13- # version format
141version : 1.0.{build}
15-
16- # branches to build
172branches :
18- # whitelist
193 only :
20- - master
21-
22- # ---------------------------------#
23- # environment configuration #
24- # ---------------------------------#
25-
26- # Operating system (build VM template)
27- os : Windows Server 2012
28-
29- # build cache to preserve files/folders between builds
30- cache :
31- - packages -> **\packages.config
32-
33- # enable patching of AssemblyInfo.* files
4+ - master
5+ configuration : Release
6+ platform : Any CPU
347assembly_info :
358 patch : true
36- file : AssemblyInfo.*
37- assembly_version : " {version}"
38- assembly_file_version : " {version}"
39- assembly_informational_version : " {version}"
40-
41- # ---------------------------------#
42- # build configuration #
43- # ---------------------------------#
44-
45- # build platform, i.e. x86, x64, Any CPU. This setting is optional.
46- platform : Any CPU
47-
48- # build Configuration, i.e. Debug, Release, etc.
49- configuration : Release
50-
9+ file : ' **\AssemblyInfo.*'
10+ assembly_version : ' {version}'
11+ assembly_file_version : ' {version}'
12+ assembly_informational_version : ' {version}'
13+ before_build :
14+ - cmd : nuget restore
5115build :
52- project : WebDriverManager.sln
5316 publish_nuget : true
54-
55- # ---------------------------------#
56- # artifacts configuration #
57- # ---------------------------------#
58- artifacts :
59- # pushing a single file
60- - path : ' **\*.nupkg'
61-
62- # ---------------------------------#
63- # deployment configuration #
64- # ---------------------------------#
65-
66- # Deploying to NuGet feed
17+ parallel : true
18+ verbosity : minimal
19+ artifacts :
20+ - path : ' **\*.nupkg'
6721deploy :
6822- provider : NuGet
6923 api_key :
7024 secure : D8ifSz8AjRvRMgbubGMgWyDiIZP1xwxAbY4iD0qtEcWrmKMdgCg3M/CuB9io8coK
71- artifact : /.*\.nupkg/
72-
73- # Deploy to GitHub Releases
74- - provider : GitHub
75- artifact : /.*\.nupkg/
76- draft : false
77- prerelease : false
78- on :
79- branch : master
80- appveyor_repo_tag : true
25+ skip_symbols : true
0 commit comments