This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Automatically adding version number to the code

Is there any method/technique/feature to add automatically incremented build number to the code (managed by software or tool)?
the build number can be used for viewing (hence traceability of the code).

Parents
  • Secondly, you really should enclose file paths in quotes. Those spaces in directory names can easily create problems.

    Or better yet, one should really just not use spaces in file and directory names. They simply aren't worth the grief they routinely cause. Blanks in filenames just don't mix well with command-line oriented tools like compilers.

Reply
  • Secondly, you really should enclose file paths in quotes. Those spaces in directory names can easily create problems.

    Or better yet, one should really just not use spaces in file and directory names. They simply aren't worth the grief they routinely cause. Blanks in filenames just don't mix well with command-line oriented tools like compilers.

Children