forked from gibbed/SteamAchievementManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
52 lines (39 loc) · 903 Bytes
/
.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
version: 7.0.{build}
branches:
only:
- master
skip_tags: true
skip_commits:
files:
- .github/*
- README.md
max_jobs: 1
image: Visual Studio 2019
clone_folder: c:\projects\SAM
cache:
- packages -> **\packages.config
- '%LocalAppData%\NuGet\Cache'
- '%LocalAppData%\NuGet\v3-cache'
install:
- git submodule update --init --recursive
configuration:
- Release
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
build:
project: SAM.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 SteamAchievementManager-%APPVEYOR_BUILD_VERSION%.zip ./LICENSE.txt ./git-log.txt ./upload/*.exe ./upload/*.dll
artifacts:
- path: '*-*.zip'