Skip Navigation
General Programming Discussion @lemmy.ml

Question: Does the build number always increment no matter the version or does the build number resets to 1 for every new version?

4 comments
  • While there are usual practices and some common sense methods you can expect, it is ultimately up to the software authors and can be whatever they wish, or nothing at all. Neither version nor build numbers are universally used.

  • In Visual Studio you can set the build number in your project as something similar to a unix timestamp/raw excel date value, so you can convert it back to a date/time of the build.

    In that case it would always increment on each build regardless of whatever version numbers you set.