forked from ERNICommunity/AgentMulder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
37 lines (29 loc) · 798 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
version: 2019.1.0.{build}
skip_branch_with_pr: true
image: Visual Studio 2017
configuration: Release
environment:
VERSION_MAJOR: 2019
VERSION_MINOR: 1
VERSION_BUILD: 0
WAVE_MIN: 191.0
WAVE_MAX: 191.1
before_build:
- ps: >-
cd src
nuget restore
build:
verbosity: minimal
after_build:
- ps: >-
$major = $env:VERSION_MAJOR
$minor = $env:VERSION_MINOR
$build = $env:VERSION_BUILD
$min = $env:WAVE_MIN
$max = $env:WAVE_MAX
.\buildNuget.ps1 -version "$major.$minor.$build" -waveVersionLow "$min" -waveVersionHigh "$max" -config Release
Get-ChildItem .\nuget\*.nupkg | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name -DeploymentName artifact }
test:
assemblies:
only:
- '**\AgentMulder.ReSharper.Tests.dll'