-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
41 lines (40 loc) · 974 Bytes
/
Copy pathappveyor.yml
File metadata and controls
41 lines (40 loc) · 974 Bytes
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
# ------------------------------------------
# CUSTOMIZABLE TEMPLATE REPOSITORY VARIABLES
#
environment:
APP_DIR_NAME: "Fast Image Viewer"
SOLUTION_EXT: "slnx"
# ------------------------------------------
version: CI Build {Build}
skip_commits:
files:
- '.github/**/*'
- 'Docs/**/*'
- 'Documents/**/*'
- 'Manual/**/*'
- 'Images/**/*'
- 'Scripts/**/*'
- 'Website/**/*'
- '*.md'
- '*.zip'
- '*.yml'
image: Visual Studio 2026
configuration: Release
install:
- >-
git submodule update --init --recursive
before_build:
- >-
nuget restore "Source\%APP_DIR_NAME%.%SOLUTION_EXT%"
- >-
dotnet nuget locals all --clear
build:
project: Source\%APP_DIR_NAME%.%SOLUTION_EXT%
parallel: true
after_build:
- >-
7z a -r "%APPVEYOR_PROJECT_NAME%_Build_%APPVEYOR_BUILD_NUMBER%.zip" ^
".\Source\%APP_DIR_NAME%\bin\*"
artifacts:
- path: "%APPVEYOR_PROJECT_NAME%_Build_%APPVEYOR_BUILD_NUMBER%.zip"
name: "%APPVEYOR_PROJECT_NAME%"