In my company we work on the same app from different teams.
Background
- I have created a local nuget server
- Each team build it's own package
- After pushing to Git-TFS server, something must increase the version number from
x.y.z
tox.y.z+1
insideproject-name
.nuspecfile and also inside each project's
packages.config` file using this package. - New release will be created ater pushing to Git-TFS server so multiple releases will be created each day.
- Each team must work on the other team's latest version released packages
Questions
What is the best way to increase the version number in
project-name
.nuspecfile and also in each project's
packages.config` file using this package after pushing to Git-TFS? Is there a better way to accomplish my goal?How do I make each project check for update in a specific packages update in the build process?