Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml

pool:
vmImage: 'Ubuntu 16.04'

task: DotNetCoreInstaller@0
inputs:
version: '2.1.402'

task: DotNetCoreCLI@2
inputs:
command: restore
projects: '**/*.csproj'

task: DotNetCoreCLI@2
inputs:
command: test
projects: '**/*Tests/*.csproj'
arguments: '--configuration $(buildConfiguration) --collect "Code coverage"'

task: NuGetCommand@2
inputs:
command: pack
packagesToPack: '**/*.csproj'