-
Notifications
You must be signed in to change notification settings - Fork 26
/
appveyor.yml
68 lines (57 loc) · 1.67 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
64
65
66
67
68
version: 1.7.{build}
image: Visual Studio 2019
configuration: Debug
init:
- git config --global core.autocrlf false
branches:
only:
- master
skip_tags: true
only_commits:
files:
- Debuggee/
- Package/
- Serialization/
- UI/
- Visualizer/
- appveyor.yml
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
before_build:
- cmd: dotnet restore
install:
- cmd: git submodule update --init --recursive
build:
project: ExpressionTreeVisualizer.sln
matrix:
fast_finish: true
after_build:
- 7z a %APPVEYOR_BUILD_FOLDER%\ExpressionTreeVisualizer.2017.zip -r %APPVEYOR_BUILD_FOLDER%\Debuggee\bin\Debug\net2.0\*.dll"
- 7z a %APPVEYOR_BUILD_FOLDER%\ExpressionTreeVisualizer.2017.zip -r %APPVEYOR_BUILD_FOLDER%\Visualizer\bin\Debug\net472\*.dll*
- 7z a %APPVEYOR_BUILD_FOLDER%\ExpressionTreeVisualizer.2019.zip -r %APPVEYOR_BUILD_FOLDER%\Debuggee\bin\Debug\*.dll*
- 7z a %APPVEYOR_BUILD_FOLDER%\ExpressionTreeVisualizer.2019.zip -r %APPVEYOR_BUILD_FOLDER%\Visualizer\bin\Debug\net472\*.dll*
artifacts:
- path: ExpressionTreeVisualizer.2019.zip
type: File
name: visualizer
- path: ExpressionTreeVisualizer.2017.zip
type: File
name: visualizer
- path: '**\*.nupkg'
type: NuGetPackage
deploy:
- provider: GitHub
description: ''
auth_token:
secure: NgxEvJd/ApBpuz6rwCNDfOI5c6nAvBIabLMj1vAtzuV4ozyaVDfjRJKa7WeJK2Ri
artifact: visualizer
- provider: NuGet
api_key:
secure: ljT3pyH+AZJ5Jy2/fiKA6riLob9Rrl6v99ORudC6KWVs5jOvBicZ861/UCEGWMEJ
artifact: /.*\.nupkg/