Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Commit 94e7e27

Browse files
committed
Releasing 5.9.0
1 parent ab06f14 commit 94e7e27

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

appveyor.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
20+
after_build:
21+
- choco install opencover.portable
22+
- choco install codecov
23+
24+
test_script:
25+
- OpenCover.Console.exe -register:user -target:"C:\Program Files\dotnet\dotnet.exe" -targetargs:"test --framework net47 --verbosity q"
26+
27+
after_test:
28+
- codecov -f "results.xml"
29+
30+
artifacts:
31+
- path: '**\Unity.*.nupkg'
32+
name: 'Unity'
33+

0 commit comments

Comments
 (0)