-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
50 lines (41 loc) · 1.68 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
version: 2.0.4.{build}
skip_tags: true
skip_branch_with_pr: false
clone_folder: C:\Centrifuge
image: Visual Studio 2019
platform: Any CPU
configuration: Debug
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "1.0.0.0"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
matrix:
fast_finish: true
build:
parallel: true
project: Centrifuge.sln
verbosity: minimal
branches:
only:
- develop
before_build:
- cmd: "nuget restore"
after_build:
- ps: >
mkdir CentrifugeDevelop\Centrifuge;
mkdir CentrifugeDevelop\Managed;
cp C:\Centrifuge\Centrifuge\bin\$env:CONFIGURATION\net35\Centrifuge.dll CentrifugeDevelop\Managed\;
cp C:\Centrifuge\Centrifuge.UnityInterop\bin\$env:CONFIGURATION\net35\Centrifuge.UnityInterop.dll CentrifugeDevelop\Managed\;
cp C:\Centrifuge\Spindle\bin\$env:CONFIGURATION\net35\Spindle.exe CentrifugeDevelop\Managed\;
cp C:\Centrifuge\Spindle\bin\$env:CONFIGURATION\net35\Mono.Cecil.dll CentrifugeDevelop\Managed\;
cp C:\Centrifuge\Spindle\bin\$env:CONFIGURATION\net35\install_windows.bat CentrifugeDevelop\Managed\;
cp C:\Centrifuge\Spindle\bin\$env:CONFIGURATION\net35\install_linux.sh CentrifugeDevelop\Managed\;
cp C:\Centrifuge\Reactor\bin\$env:CONFIGURATION\net35\LitJSON.dll CentrifugeDevelop\Managed\;
cp C:\Centrifuge\Reactor\bin\$env:CONFIGURATION\net35\0Harmony.dll CentrifugeDevelop\Managed\;
cp C:\Centrifuge\Reactor\bin\$env:CONFIGURATION\net35\Reactor.dll CentrifugeDevelop\Centrifuge\;
cp C:\Centrifuge\Reactor.API\bin\$env:CONFIGURATION\net35\Reactor.API.dll CentrifugeDevelop\Centrifuge\;
artifacts:
- path: CentrifugeDevelop
name: Centrifuge Bleeding Edge