I'm able to set the project version by adding the tag to the .csproj file, but I'd like to change that value programatically inside the pipeline.
I hacked together a script to do accomplish that, but it feels sloppy.
That's got to be a way to do this through the CLI, but I'm just not finding it.
Is there a command similar to this that I'm overlooking?
dotnet build -project-version 1.2.3
If no command exists, what have you done to set the project build version in your pipelines?
i use the following in my pipeline.
and in my csproj file i have
to get the version number in code, i use the following
if you're using azure pipelines, you can add a powershell script, which declares the version based on the date & time.