-
-
Notifications
You must be signed in to change notification settings - Fork 334
/
appveyor.yml
42 lines (34 loc) · 1002 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
41
42
version: 3.1.4.{build}
os: Visual Studio 2022
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:
- ps: ./install-gtksharp.ps1
- cmd: dotnet tool install --global Cake.Tool
before_build:
- cmd: dotnet --version
- cmd: setJavaVersionForSonar.cmd
build_script:
# Cake.
- cmd: dotnet cake
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