Currently, I am utilizing TFVC as a source control version within Azure DevOps, and I'm using the Classic Editor for my build pipeline.
I am aware that $(Rev:r) is a predefined variable utilized solely in the Build Number Format to increment the number by 1.
As depicted in the Build Number Format image, I have specified 14.00.00$(Rev:.rrrr) in the Build Number Formats within the Option tag. Executing the pipeline will result in the Build number being 14.00.00.0001, 14.00.00.0002, 14.00.00.0003, and so on.
However, I would like to begin the build number of my pipeline with a specific number, such as 460. Thus, my preferred output should be as follows: 14.00.00.0461, 14.00.00.0462, 14.00.00.0463, .... .... 14.00.00.0999, 14.00.00.1000 ...
Can you advise me on how to achieve this? Thank you.