From 33434bd9651ead208b9aa5efc2b787725cb9ea3c Mon Sep 17 00:00:00 2001 From: d-barker <31757611+d-barker@users.noreply.github.com> Date: Fri, 24 Jan 2020 17:10:10 +0800 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ecdd19c..bcad77f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -44,14 +44,11 @@ steps: # arguments: '--configuration $(buildConfiguration)' - task: DotNetCoreCLI@2 - displayName: 'Package Library' inputs: - command: 'pack' - packagesToPack: './src/AspNetCore.Identity.MongoDbCore.csproj' - versioningScheme: 'off' - arguments: '-p:NuspecFile=AspnetCore.Identity.MongoDbCore.nuspec' - packDirectory: $(build.artifactStagingDirectory)/Nuget - nobuild: true + command: 'custom' + projects: './src/AspNetCore.Identity.MongoDbCore.csproj' + custom: 'pack' + arguments: '--no-build -p:NuspecFile=AspNetCore.Identity.MongoDbCore.nuspec -o $(build.artifactStagingDirectory)/Nuget' verbosityPack: 'Detailed' - task: NuGetCommand@2