【发布时间】:2021-03-10 17:51:23
【问题描述】:
This post 提出我要问的一个问题 - 我可以将 .snupkg 发布到 Azure DevOps 源吗?由于该帖子已有两年多的历史,我想知道该功能是否已经实现。
如果上述答案是肯定的,我想知道如何通过 Azure 构建管道来实现。我当前管道的推送任务在这里:
task: NuGetCommand@2
inputs:
command: 'push'
feedsToUse: 'select'
vstsFeed: 'LeaderAnalyticsFeed'
publishVstsFeed: 'LeaderAnalyticsFeed'
includeSymbols: true
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.snupkg'
【问题讨论】:
标签: azure-devops azure-pipelines azure-artifacts