Azure-devops-docs: Clarify download location of Universal Packages

Created on 11 Feb 2019  Â·  3Comments  Â·  Source: MicrosoftDocs/azure-devops-docs

Where are the contents of a universal package downloaded to?


Document Details

⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Pri2 devopprod doc-bug

Most helpful comment

It appears to be $(Build.SourcesDirectory).

@letmaik You can get it to go somewhere else by using "downloadDirectory":

- task: UniversalPackages@0
  displayName: 'Universal download'
  inputs:
    command: download
    vstsFeed: 'PackageFeed'
    vstsFeedPackage: 'Package'
    vstsPackageVersion: 1.0.0
    downloadDirectory: '$(Build.SourcesDirectory)\anotherfolder'

All 3 comments

It appears to be $(Build.SourcesDirectory).

@letmaik You can get it to go somewhere else by using "downloadDirectory":

- task: UniversalPackages@0
  displayName: 'Universal download'
  inputs:
    command: download
    vstsFeed: 'PackageFeed'
    vstsFeedPackage: 'Package'
    vstsPackageVersion: 1.0.0
    downloadDirectory: '$(Build.SourcesDirectory)\anotherfolder'

This should be documented, we'll get it on the backlog, thank you!

@letmaik @eknraw Thank you both for the feedback and input! I've updated the doc and you should see it live later today. Thank you again and if you have any more feedback you will open a new issue :)

Was this page helpful?
0 / 5 - 0 ratings