aboutsummaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 1c521e4a..3c191665 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -13,9 +13,15 @@ variables:
buildConfiguration: 'Release'
steps:
-- script: dotnet build --configuration $(buildConfiguration)
- displayName: 'dotnet build $(buildConfiguration)'
+- task: DotNetCoreCLI@2
+ inputs:
+ command: build
+ feedsToUse: config
+ nugetConfigPath: nuget.config
+
- task: DotNetCoreCLI@2
inputs:
command: test
+ projects: '**/*Tests/*.csproj'
+ arguments: '--configuration $(buildConfiguration) --collect "Code coverage"'