forked from lduchosal/ipnetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
53 lines (43 loc) · 1.39 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
version: '2.4.0.{build}'
image: Visual Studio 2019
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "{version}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
build:
project: src/
branches:
only:
- master
init:
- cmd: git config --global core.autocrlf true
before_build:
- cmd: dotnet --version
- cmd: dotnet clean ./src
- 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\netcoreapp3.0\System.Net.IPNetwork.TestProject.NetCore.dll
deploy:
provider: NuGet
api_key:
secure: oy2ewnj5hd4h2en5uhtq6oynhlzshohurewct5iy7is3dy
skip_symbols: false
artifacts:
- path: '**\IPNetwork2*.nupkg'
name: nuget