Reputation: 43
I have certain packages that are not available online. I am maintaining a package folder in my repo that holds all the packages required for the application to successfully build.
I am trying to figure out a way to install packages in VSTS build definition from the packages present in repo.
Thanks in advance.
Upvotes: 1
Views: 312
Reputation: 33738
I recommend that you can store your packages in VSTS package feed. Then restore the packages from your VSTS feed.
Regarding packages store in the repository scenario, you can clone that repository to the corresponding folder by using Command Line step/task;
On the other hand, if the project/solution file and package files are in the same repository, you just need to select corresponding repository in Repository tab of build definition.
Upvotes: 0