-
Notifications
You must be signed in to change notification settings - Fork 15
/
appveyor.yml
63 lines (49 loc) · 1.14 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
58
59
60
61
62
63
version: 1.0.0-beta.{build}
image: Visual Studio 2017
configuration: Release
platform: Any CPU
branches:
only:
- master
only_commits:
files:
- src/
- tests/
pull_requests:
do_not_increment_build_number: true
skip_branch_with_pr: true
nuget:
account_feed: false
project_feed: false
disable_publish_on_pr: true
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
environment:
NETCORE_ENVIRONMENT: Production
ASPNETCORE_ENVIRONMENT: Production
before_build:
- nuget restore -verbosity quiet
build:
project: Totem.sln
publish_nuget: false
publish_nuget_symbols: false
include_nuget_references: false
verbosity: minimal
test: off
artifacts:
path: '**\*.nupkg'
deploy:
- provider: NuGet
server: https://nuget.org/
api_key:
secure: axs1WkLxGnTX4D1kKOt3FM3x0Krj/X9GIY1xSOsbFPa2bsqX79inSwPUwGoiGoIk
skip_symbols: true
artifact: /.*\.nupkg/
cache:
- '%LocalAppData%\NuGet\v3-cache'