Reputation: 1889
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?
Upvotes: 2
Views: 467
Reputation: 38096
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.
Upvotes: 1
Reputation: 2176
You can use the following task in your release definition.
As you can see you have to specify the feed in your VSTS, package, version and you also can specify the destination directory.
Upvotes: 0