Chris
Chris

Reputation: 27384

Auto update version numbers (C++ / C#) in Visual Studio 2005

I want to automate part of my build process, such that I can click a button (or run a program, etc.) that will automatically update the version numbers in all C++ and C# projects within my solution.

All my version numbers are date based, so it will be easy to create.

How do I go about tackling this? Does Visual Studio have any in-built functionality to allow this, or if not, how do I go about doing this?

Upvotes: 0

Views: 1214

Answers (2)

i100
i100

Reputation: 4666

It can but only for strong assemblies (in the case just add asterisk [*] to number which you want to auto increment) If yours is not such a case you could try ProjectBuildCounter.

It is free, easy to use, standalone executable. You have to attach it to your project and - voila - versions are incremented on each build.

Could be used for as many projects as needed. You might download nere. Usage info is available here

Upvotes: 0

Steve
Steve

Reputation: 216243

I can suggest this tool

Versioning Controlled Build

I have used it for many years now and it let you control every aspect of the versioning problem

Upvotes: 2

Related Questions