# Template for deploying artifacts to NuGet, Azure Pipelines, and SharePoint steps: # NuGet Package Deployments - task: NuGetCommand@2 condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true')) displayName: 'Deploy Artifact: Centron.WebServices.Core Nuget Package (NuGet)' continueOnError: true inputs: command: push nuGetFeedType: external publishFeedCredentials: 'c-entron NuGet Server' allowPackageConflicts: true packagesToPush: 'artifacts/nuget/Centron.WebServices.Core.*.nupkg' - task: NuGetCommand@2 condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true')) displayName: 'Deploy Artifact: Centron.Interfaces Nuget Package (NuGet)' continueOnError: true inputs: command: push nuGetFeedType: external publishFeedCredentials: 'c-entron NuGet Server' allowPackageConflicts: true packagesToPush: 'artifacts/nuget/Centron.Interfaces.*.nupkg' - task: NuGetCommand@2 condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true')) displayName: 'Deploy Artifact: Centron.Core Nuget Package (NuGet)' continueOnError: true inputs: command: push nuGetFeedType: external publishFeedCredentials: 'c-entron NuGet Server' allowPackageConflicts: true packagesToPush: 'artifacts/nuget/Centron.Core.*.nupkg' - task: NuGetCommand@2 condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true')) displayName: 'Deploy Artifact: Centron.Controls Nuget Package (NuGet)' continueOnError: true inputs: command: push nuGetFeedType: external publishFeedCredentials: 'c-entron NuGet Server' allowPackageConflicts: true packagesToPush: 'artifacts/nuget/Centron.Controls.*.nupkg'