I used to use Octopus Deploy and I had steps in my deployment processes where the contents of a NuGet package were deployed to a specific folder on the deployment target. I'm currently using VSTS and I'm looking for a way to deploy the contents of a package (hosted in a feed within VSTS) into a specific destination folder on the deployment target - is this possible with the native functionality of VSTS as it is with Octopus Deploy?
There are multiple ways to achieve that:
You can specify where to locate the NuGet packages in Destination directory option.
As Rodrigo mentions, you can use the Download Packages task to download a package.
You can use Command Line task or NuGet custom task to specify the the package and where to download the packages.