I have a property group in my .csproj file with major, minor and patch version, which is to define the NuGet package version. It looks like this:
<PropertyGroup>
<MajorVersionOfNuget>1</MajorVersionOfNuget>
<MinorVersionOfNuget>1</MinorVersionOfNuget>
<PatchVersionOfNuget>0</PatchVersionOfNuget>
</PropertyGroup>
In our old Azure Pipelines (classic) these properties are used to set a build number format, under options. Like such:
How do I do this, in the YAML version of Azure Pipelines?
