Azure DevOps publish Nuget to hosted feed

后端 未结 6 1256
野趣味
野趣味 2020-12-30 11:07

I have a question using the hosted (free) AzureDevops pipelines. I have a small .NET Core project which I want to create an Azure Devops pipeline where the following is done

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-30 11:42

    As per the answer from @mwimwi, including the project name in the feed path worked for me:

    - task: DotNetCoreCLI@2
      displayName: Push
      inputs:
        command: push
        packagesToPush: ...
        feedPublish: /
    

提交回复
热议问题