Quick, simple and easy idea for automatic versioning in azure pipelines
, .NET 5, BlazorHere are two straightforward steps for automatic versioning of a .NET application when using azure pipelines.
First step is to add -p:Version=$(date).$(buildCounter)
switch to the dotnet publish
(or dotnet build
if you don't use publishing) step:
The second one is to declare the variables used in the previous step in variables
section. First one is the current date in yyyy.MM.dd
format and the second is a build counter (for given date) that is reset everyday.
Thanks to that msbuild will put a version in current date + build counter format in the assembly (e.g., 2021.7.12.2) that guarantees it will always be unique and incrementing with every build. If that's a Blazor application then you can display this value by using this code: