forked from giacomelli/GeneticSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
40 lines (32 loc) · 918 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
version: 2.6.{build}
os: Visual Studio 2017
configuration: Release
environment:
clone_folder: c:\gs
GITHUB_REPO_TOKEN:
secure: Jmpeow5aAcDhUHkwac/AC6MzQciGc9TLgrp5oz4U0gyAwCWGqqxJhmjz3AVrWp/V
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
install:
- cmd: choco install gtksharp
before_build:
- cmd: dotnet --version
build_script:
# Cake.
- ps: .\build.ps1
after_build:
# Build the GeneticSharp and GeneticSharp.Extensions NuGet packages.
- cmd: buildLibrariesNuget.cmd
# Build the GeneticSharp.Templates NuGet package.
- cmd: buildTemplatesNuget.cmd
# Tests are executed by Cake.
test: off
artifacts:
- path: .\src\nuget\*.nupkg
name: Libraries NuGet packages
- path: .\src\Templates\*.nupkg
name: Templates NuGet package