-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
27 lines (24 loc) · 727 Bytes
/
azure-pipelines.yml
File metadata and controls
27 lines (24 loc) · 727 Bytes
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
pool:
vmImage: 'vs2017-win2016'
variables:
buildConfiguration: 'Release'
steps:
- task: DotNetCoreCLI@2
displayName: Restore
inputs:
command: 'restore'
projects: '**/*.csproj'
#verbosityRestore: 'detailed' # Options: quiet, minimal, normal, detailed, diagnostic
- task: DotNetCoreCLI@2
displayName: Build
inputs:
command: 'build'
projects: '**/*.csproj'
arguments: '--configuration $(buildConfiguration)'
#verbosityRestore: 'detailed' # Options: quiet, minimal, normal, detailed, diagnostic
- task: DotNetCoreCLI@2
displayName: Test
inputs:
command: test
projects: '**/*Tests/*.csproj'
arguments: '--configuration $(buildConfiguration) --collect "Code coverage"'