Skip to content

Commit 1aef56c

Browse files
authored
Create appveyor.yml
1 parent ad5f9c4 commit 1aef56c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

appveyor.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
image: Visual Studio 2017
2+
configuration: Release
3+
platform: Any CPU
4+
5+
install:
6+
- ps: $env:build_version = (Select-Xml -Path ".\package.props" -XPath "/Project/PropertyGroup/Version" | Select-Object -ExpandProperty Node).InnerText
7+
- ps: Update-AppveyorBuild -Version "$env:build_version.$env:APPVEYOR_BUILD_NUMBER"
8+
9+
dotnet_csproj:
10+
patch: false
11+
12+
before_build:
13+
- cmd: dotnet restore
14+
15+
build:
16+
project: package.sln
17+
parallel: true
18+
verbosity: minimal
19+

0 commit comments

Comments
 (0)