-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
30 lines (30 loc) · 814 Bytes
/
appveyor.yml
File metadata and controls
30 lines (30 loc) · 814 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
version: 0.2.{build}
skip_tags: true
configuration: Release
image: Visual Studio 2017
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
environment:
COVERALLS_REPO_TOKEN:
secure: k6gJwhivEaPBnNT7CKZEks2q1yreyDbVqkZMt46mN32tgRhHhChvMLgTqrtGoG6R
CODECOV_TOKEN:
secure: N+vJ8JrMwPFYRWXqX3OB2IE59laOOvt/OotFeFzOjQfApFFHVl1AxsPESs7Lcte2
init:
- cmd: git config --global core.autocrlf true
before_build:
# display .net core version
- cmd: dotnet --version
# restore packages
- cmd: dotnet restore ".\CSV.sln" --verbosity m
build:
project: .\CSV.sln
verbosity: minimal
test_script:
- cmd: cd CSV.Tests
- cmd: dotnet test CSV.Tests.csproj