forked from microsoftgraph/msgraph-sdk-dotnet-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (31 loc) · 766 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
38
version: 1.0.{build}-{branch}
branches:
only:
- dev
- master
image: Visual Studio 2017
before_build:
- cmd: >-
nuget restore
build:
verbosity: minimal
test:
assemblies:
only:
- tests/Microsoft.Graph.Core.Test/bin/Debug/Microsoft.Graph.Core.dll
- tests/Microsoft.Graph.Test/bin/Debug/Microsoft.Graph.Test.dll
after_test:
- cmd: >-
cd tests/Microsoft.Graph.DotnetCore.Test
dotnet test
cd ../Microsoft.Graph.DotnetCore.Core.Test
dotnet test
notifications:
# Email
- provider: Email
to:
subject: 'Microsoft.Graph Build {{status}}' # optional
message: "Commit {{commitId}} {{status}}." # optional
on_build_status_changed: true