Rasika
Rasika

Reputation: 322

Create a NuGet package after a TFS buld and deploy

What is the best way to make a .dll available as a NuGet package in a local environment so that others can download that and use it whenever they want. We use TFS as the CI server and I want NuGet package (with a version number) to be copied to a location in the intranet after every build so that users can pull it when they want. (Do not want to push). I want this to happen from the all the feature branches, any feature branch other than main needs to package this as a beta. Thanks.

Upvotes: 1

Views: 70

Answers (1)

Anonymous
Anonymous

Reputation: 1979

Take a look here: https://www.nuget.org/packages/CreateNewNuGetPackageFromProjectAfterEachBuild/

This will build a nuget package whenever you build.

Upvotes: 1

Related Questions