-
Our products is using four digit versioning. Is it possible to generate four digit version using gitversion.yml? |
Beta Was this translation helpful? Give feedback.
Answered by
asbjornu
Feb 17, 2022
Replies: 1 comment 1 reply
-
How do you want to consume the version number? Since GitVersion exposes all of its version variables, you can build any version number you want in the build pipeline after GitVersion has executed. You can also adjust the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
HHobeck
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do you want to consume the version number? Since GitVersion exposes all of its version variables, you can build any version number you want in the build pipeline after GitVersion has executed. You can also adjust the
assembly-versioning-scheme
to something like'{env:FEATURE}.{Major}.{Minor}.{Patch}'
and consume that directly.