From 2a39eb7a6c27d3bfd6cb6dce46bc29576444e1c3 Mon Sep 17 00:00:00 2001 From: Alexander Luzgarev Date: Sun, 14 Oct 2018 16:58:00 +0200 Subject: [PATCH] Fix pack again --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6654f3b..13eecb1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -20,11 +20,11 @@ steps: projects: '**/*Tests/*.csproj' arguments: '--configuration $(buildConfiguration)' -- task: NuGetCommand@2 - displayName: 'nuget pack' +- task: DotNetCoreCLI@2 inputs: - command: pack + command: 'pack' packagesToPack: '**/*.csproj' + configuration: 'release' - task: PublishBuildArtifacts@1 displayName: 'publish artifacts'