How to update sonar.projectVersion dynamcialy with build number in Azuredevops

we are using azure devops market extenrins sonaqube (https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarqube)
in that Prepare Analysis Configuration task is having
Choose the way to run the analysis : I choosen the “use standalone scanner”
Additional Properties setting to overwrite or pass the additional values for the scanner.
Im updating the value as

Additional properties that will be passed to the scanner,

Put one key=value per line, example:

sonar.exclusions=**/*.bin

sonar.projectVersion=${BUILD_BUILDNUMBER}

But this BUILD_BUILDNUMBER is not updating in our sonar site, version is showing blank. Is there way we can update the each of sonar scan with buildnumber?