-
Notifications
You must be signed in to change notification settings - Fork 28
/
appveyor.yml
66 lines (58 loc) · 2.48 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
version: 0.1.{build}
branches:
only:
- master
image: Visual Studio 2019
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: 'LibForge\*\Properties\AssemblyInfo.*'
assembly_version: '{version}.0'
assembly_file_version: '{version}.0'
assembly_informational_version: '{version}.0'
install:
- cmd: git submodule update --init --recursive
before_build:
- cmd: nuget restore LibForge/LibForge.sln
build:
project: LibForge/LibForge.sln
parallel: true
verbosity: minimal
after_build:
- >
7z a LibForge-%APPVEYOR_BUILD_VERSION%.zip
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeTool\bin\Release\LibForge.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeTool\bin\Release\MidiCS.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\GameArchives.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\LibOrbisPkg.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\DtxCS.dll
%APPVEYOR_BUILD_FOLDER%\README.md
%APPVEYOR_BUILD_FOLDER%\LICENSE.txt
- >
7z a ForgeTool-%APPVEYOR_BUILD_VERSION%.zip
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeTool\bin\Release\ForgeTool.exe
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeTool\bin\Release\LibForge.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeTool\bin\Release\MidiCS.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\GameArchives.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\LibOrbisPkg.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\DtxCS.dll
%APPVEYOR_BUILD_FOLDER%\README.md
%APPVEYOR_BUILD_FOLDER%\LICENSE.txt
- >
7z a ForgeToolGUI-%APPVEYOR_BUILD_VERSION%.zip
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeTool\bin\Release\ForgeTool.exe
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeTool\bin\Release\LibForge.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeTool\bin\Release\MidiCS.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\GameArchives.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\LibOrbisPkg.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\OpenTK.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\OpenTK.GLControl.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\DtxCS.dll
%APPVEYOR_BUILD_FOLDER%\LibForge\ForgeToolGUI\bin\Release\ForgeToolGUI.exe
%APPVEYOR_BUILD_FOLDER%\README.md
%APPVEYOR_BUILD_FOLDER%\LICENSE.txt
artifacts:
- path: LibForge-%APPVEYOR_BUILD_VERSION%.zip
- path: ForgeTool-%APPVEYOR_BUILD_VERSION%.zip
- path: ForgeToolGUI-%APPVEYOR_BUILD_VERSION%.zip