Where are the contents of a universal package downloaded to?
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
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 :)
Most helpful comment
It appears to be $(Build.SourcesDirectory).
@letmaik You can get it to go somewhere else by using "downloadDirectory":