-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.appveyor.yml
54 lines (41 loc) · 1.13 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
version: 1.0.{build}
branches:
only:
- main
skip_tags: true
skip_commits:
files:
- README.md
- .github/*
max_jobs: 1
image: Visual Studio 2019
clone_folder: c:\projects\gibbed-fgdk3
cache:
- packages -> **\packages.config
- '%LocalAppData%\NuGet\Cache'
- '%LocalAppData%\NuGet\v3-cache'
install:
# - choco install dotnetcore-sdk --pre -y -r
- git submodule update --init --recursive
configuration:
- Debug
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
build:
project: FGDK3.sln
parallel: true
verbosity: minimal
before_build:
- nuget restore
after_build:
- set TZ=GMT
- git log . > git-log.txt
- 7z a -r -tzip -mx=9 -x!*/LICENSE.txt fgdk3_%APPVEYOR_BUILD_VERSION%.zip ./LICENSE.txt ./README.txt git-log.txt bin/*.exe bin/*.dll bin/projects
- 7z a -r -tzip -mx=9 -x!*/LICENSE.txt fgdk3_%APPVEYOR_BUILD_VERSION%_with-debug-symbols.zip ./LICENSE.txt ./README.txt git-log.txt bin/*.exe bin/*.dll bin/*.pdb bin/projects
artifacts:
- path: '*.zip'