0

This post asks one of the questions I am asking - Can I publish a .snupkg to a Azure DevOps feed? Since the post is over two years old I would like to know if the functionality has since been implemented.

If the answer to the above is yes, I would like to know how to do it via an Azure build pipeline. The push task for my current pipeline is here:

task: NuGetCommand@2
  inputs:
    command: 'push'
    feedsToUse: 'select'
    vstsFeed: 'LeaderAnalyticsFeed'
    publishVstsFeed: 'LeaderAnalyticsFeed'
    includeSymbols: true
    packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.snupkg'
Sam
  • 3,928
  • 3
  • 23
  • 48

1 Answers1

0

We still cannot do this now, See the ticket you shared and Alternative PDB distribution:

.snupkg symbol packages have some limitations:

  • Not supported by Azure DevOps Artifacts service.

In addition, I found a feature request and the state is Under Review, you could follow the ticket to get the latest news. Thank you for helping us build a better Azure DevOps.

Vito Liu
  • 5,418
  • 1
  • 2
  • 9