forked from lduchosal/ipnetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
37 lines (29 loc) · 1.04 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
version: '2.2.0.{build}'
image: Visual Studio 2017
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "{version}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
build:
project: src/
publish_nuget: true
branches:
only:
- master
init:
- cmd: git config --global core.autocrlf true
before_build:
- cmd: dotnet --version
- cmd: dotnet clean
- cmd: dotnet restore ./src --verbosity m
- cmd: nuget restore .\src
build_script:
- cmd: dotnet pack -c release ./src/System.Net.IPNetwork
- cmd: dotnet build -c release ./src/System.Net.IPNetwork.ConsoleApplication.NetFramework
- cmd: dotnet build -c release ./src/System.Net.IPNetwork.ConsoleApplication.NetCore
test_script:
- cmd: dotnet test ./src/System.Net.IPNetwork.TestProject.NetCore/System.Net.IPNetwork.TestProject.NetCore.csproj
- vstest.console /logger:Appveyor c:\Projects\ipnetwork\src\System.Net.IPNetwork.TestProject.NetCore\bin\Debug\netcoreapp2.0\System.Net.IPNetwork.TestProject.NetCore.dll
deploy: off