dotnet version -m "Auto increment version to v$newVer by CI/CD pipeline" patch
results in "Auto increment version to v0.0.17 by CI/CD pipeline"
dotnet version patch -m "Auto increment version to v$newVer by CI/CD pipeline"
results in "v0.0.17" the default commit message
according the documentation it works for dotnet version minor -m "xxxx".
I think having the possibility tp have the options at the end is good for better readability of the code.
dotnet version -m "Auto increment version to v$newVer by CI/CD pipeline" patch
results in "Auto increment version to v0.0.17 by CI/CD pipeline"dotnet version patch -m "Auto increment version to v$newVer by CI/CD pipeline"
results in "v0.0.17" the default commit messageaccording the documentation it works for
dotnet version minor -m "xxxx"
. I think having the possibility tp have the options at the end is good for better readability of the code.