-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
50 lines (40 loc) · 995 Bytes
/
appveyor.yml
File metadata and controls
50 lines (40 loc) · 995 Bytes
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
version: 1.0.2.{build}
platform: Any CPU
configuration: Release
skip_tags: true
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: "{version}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
before_build:
- nuget restore "./src/TestRepository.sln"
build:
project: src\TestRepository.sln
publish_nuget: true
test:
assemblies:
- '**\*.Tests.dll'
artifacts:
- path: /.*\.nupkg/
name: NuGet package
deploy:
# Deploying to NuGet feed
- provider: NuGet
api_key:
secure: Enbbe1MRpwxTk+l70bA1DfoJq62BO4S01RRKFDL4Fx83I/f3W4D4MQJTRXrNwkFj
skip_symbols: true
artifact: /.*\.nupkg/
on:
branch: master
# Deploy to GitHub Releases
- provider: GitHub
artifact: /.*\.nupkg/
draft: false
prerelease: false
auth_token:
secure: F00nbLt278uSgQKKvDMLxc6AXtaZNE4b9WcDfDZ79T1gN23xhpLtoeguU6B0tSuV
on:
branch: master
appveyor_repo_tag: true