-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathappveyor.yml
54 lines (37 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
51
branches:
only:
- master
image: Visual Studio 2017
configuration: Release
platform: Any CPU
dotnet_csproj:
patch: false
file: '**\*.csproj'
version: '{version}'
nuget:
disable_publish_on_pr: true
clone_folder: C:\projects\ceras
before_build:
- cmd: nuget restore
build_script:
- dotnet build "C:\projects\ceras\src\Ceras\Ceras.csproj" --verbosity m --configuration Release
- dotnet build "C:\projects\ceras\src\Ceras.ImmutableCollections\Ceras.ImmutableCollections.csproj" --verbosity m --configuration Release
- dotnet build "C:\projects\ceras\tests\Ceras.Test\Ceras.Test.csproj" --verbosity m --configuration Release
# - dotnet build "C:\projects\ceras\src\Ceras.AotGenerator\Ceras.AotGenerator.csproj" --verbosity m --configuration Release
- 7z a C:\projects\ceras\ceras_netstandard2.0.zip "C:\projects\ceras\src\Ceras\bin\Any CPU\Release\netstandard2.0\*"
- 7z a C:\projects\ceras\ceras_net45.zip "C:\projects\ceras\src\Ceras\bin\Any CPU\Release\net45\*"
- 7z a C:\projects\ceras\ceras_net47.zip "C:\projects\ceras\src\Ceras\bin\Any CPU\Release\net47\*"
# - 7z a C:\projects\ceras\ceras_UnityAotGenerator.zip "C:\projects\ceras\src\Ceras.AotGenerator\bin\Any CPU\Release\net47\*"
artifacts:
- path: '**\src\Ceras\bin\**\Ceras*.nupkg'
name: NuGet Package Ceras
- path: '**\src\Ceras.ImmutableCollections\**\Ceras*.nupkg'
name: NuGet Package Ceras.ImmutableCollections
- path: ceras_netstandard2.0.zip
name: Release Folder Zip (.NET Standard 2.0)
- path: ceras_net45.zip
name: Release Folder Zip (.NET Framework 4.5)
- path: ceras_net47.zip
name: Release Folder Zip (.NET Framework 4.7)
#- path: ceras_UnityAotGenerator.zip
# name: AotGenerator for Unity IL2CPP