I want to store a set of integers that get auto incremented at build time:
int MajorVersion = 0;
int MinorVersion = 1;
int Revision = 92;
When I compile, it would auto-increment the Revision count. When I create a new setup project package, it would increment MinorVersion (i'm ok with doing this manually). MajorVersion would only be incremented manually.
Then I could display a version number in help/about to the user as:
Version: 0.1.92
Any help appreciated.
