Basically I am trying to specify the Nuget package version on a step in a process in octopus.
We have a fairly straightforward process where we use Teamcity to create a Nuget package and upload it to the octopus, we then ask octopus to create a release for a given project and this fires off the Octopus process that installs 2 other nuget packages and then our new package that we just uploaded.
The problem we have is with the 2 other packages. I'll call them PackageA and PackageB. I want to install version 1.0.0.0 of PackageA and version 2.0.0.0 of PackageB and then always the latest for the NewReleasePackage I just uploaded. The basic step of Deploy a Nuget Package has a field for "NuGet package ID" which helps me identify PackageA and PackageB. However this doesn't let me specify a version. If I have two clients, one that uses version 1.0.0.0 of PackageA and another that uses version 2.0.0.0 then I will have two versions of PackageA in my octopus package repository and I need to be able to specify at the step level the version of the package I want installed for a given process/client. However I cant seem to find a way to do this. Can you help?
Thanks
Will