diff --git a/Directory.Build.props b/Directory.Build.props
index 15c2df2713d..c5dfedb146f 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -36,8 +36,11 @@
* Major/Minor match Android stable API level, such as 30.0 for API 30.
* Bump first digit of the patch version for feature releases (and reset the first two digits to 0)
-->
- 36.0.0
- rc.2
+ 36.0.1
+ $(AndroidPackVersion.LastIndexOf("."))
+ $(AndroidPackVersion.Substring(0,$(AndroidPackVersionPatchIndex)))
+ $(AndroidPackVersion.Substring($([MSBuild]::Add($(AndroidPackVersionPatchIndex), 1))))
+ rtm
false
diff --git a/build-tools/create-packs/Directory.Build.targets b/build-tools/create-packs/Directory.Build.targets
index 20b0af19e81..72640fc3aff 100644
--- a/build-tools/create-packs/Directory.Build.targets
+++ b/build-tools/create-packs/Directory.Build.targets
@@ -77,7 +77,7 @@
diff --git a/build-tools/scripts/XAVersionInfo.targets b/build-tools/scripts/XAVersionInfo.targets
index 292b67cf41b..6dbdce840f2 100644
--- a/build-tools/scripts/XAVersionInfo.targets
+++ b/build-tools/scripts/XAVersionInfo.targets
@@ -82,9 +82,10 @@
<_AndroidPackBranch>$([System.Text.RegularExpressions.Regex]::Replace('$(XAVersionBranch)', '[^a-zA-Z0-9-]', '-'))
<_AndroidPackLabel Condition=" '$(_AndroidPackLabel)' == '' and $(XAVersionBranch.StartsWith('release/'))">$(AndroidPackVersionSuffix).$(PackVersionCommitCount)
<_AndroidPackLabel Condition=" '$(_AndroidPackLabel)' == '' ">ci.$(_AndroidPackBranch).$(PackVersionCommitCount)
- $(AndroidPackVersion)-$(_AndroidPackLabel)
- $(AndroidPackVersion).$(PackVersionCommitCount)
+ $(AndroidPackVersionMajorMinor).$([MSBuild]::Add($(AndroidPackVersionPatch), $(PackVersionCommitCount)))
+ $(AndroidPackVersionLong).0
true
+