-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
42 lines (33 loc) · 1 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
environment:
version_suffix: alpha
version: 1.0.0-$(version_suffix){build}
# branches to build
branches:
except:
- master
image: Visual Studio 2017
configuration: Release
# Patch .NET Core/Standard *.csproj files for versioning:
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
# Automatically register private account and/or project AppVeyor NuGet feeds.
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true # disable publishing of .nupkg artifacts to
# account/project feeds for pull request builds
# restore Nuget packages before build:
before_build:
- nuget restore
build:
publish_nuget: true # package projects with .nuspec files and push to artifacts
#publish_nuget_symbols: true # generate and publish NuGet symbol packages
verbosity: minimal
artifacts:
- path: '**\*.nupkg'