We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5f9c4 commit 1aef56cCopy full SHA for 1aef56c
appveyor.yml
@@ -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