I need to increment the version number of a Power App solution in a (Classic) DevOps Pipeline, i.e. just increment the revision number.
In Pipeline Options i set the Build Number Format to: $(version.MajorMinor).$(version.Patch).$(Rev:r)
In the "Power Platform Set Solution Version" task i set the Solution Version Number to $Build.BuildNumber)
I get this error: ##[error]Invalid number of components in version. Version: $(version.MajorMinor).$(version.Patch).$(Rev:r). this should translate to: 1.0.0.2
There should be 4 components (right?) and it seems to me that i am defining 4
what am i doing wrong?