diff --git a/tools/releaseBuild/signing.xml b/tools/releaseBuild/signing.xml
index c26986d3b..116ff0511 100644
--- a/tools/releaseBuild/signing.xml
+++ b/tools/releaseBuild/signing.xml
@@ -55,27 +55,27 @@
dest="__OUTPATHROOT__\PowerShellEditorServices\PowerShellEditorServices.VSCode\Public\HtmlContentView\Write-VSCodeHtmlContentView.ps1" />
-
-
-
-
-
-
-
-
diff --git a/tools/releaseBuild/vstsbuild.ps1 b/tools/releaseBuild/vstsbuild.ps1
index 392fa3629..15f5a5343 100644
--- a/tools/releaseBuild/vstsbuild.ps1
+++ b/tools/releaseBuild/vstsbuild.ps1
@@ -21,6 +21,11 @@ Begin
& $gitBinFullPath clone -b master --quiet https://github.com/PowerShell/${releaseToolsDirName}.git $releaseToolsLocation
Import-Module "$releaseToolsLocation/vstsBuild" -Force
Import-Module "$releaseToolsLocation/dockerBasedBuild" -Force -Prefix DockerBased
+
+ # Get the update signing script and update the signing XML file
+ $updateSigningPath = Join-Path $releaseToolsLocation 'updateSigning.ps1'
+ Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/releaseBuild/updateSigning.ps1' -OutFile $updateSigningPath
+ & $updateSigningPath -SigningXmlPath (Join-Path $PSScriptRoot 'signing.xml')
}
End {