forked from sensaura-public/iotweb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
50 lines (38 loc) · 1.06 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: 0.9.{build}
branches:
only:
- master
# Build worker image (VM template)
image: Visual Studio 2015
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf input
# clone directory
clone_folder: c:\projects\iotweb
# fetch repository as zip archive
shallow_clone: true # default is "false"
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: x64
# to add several platforms to build matrix:
# platform:
# - x86
# - x64
# - ARM
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
install:
- appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
before_build:
- cmd: appveyor-retry nuget restore IotWeb.sln -verbosity detailed -DisableParallelProcessing
# MSBuild
build:
project: IotWeb.sln
verbosity: minimal
parallel: true
#test: off