From e752c81add1b5841cac3480478a1c617efbccc3d Mon Sep 17 00:00:00 2001 From: Toni Saario Date: Fri, 24 May 2024 11:49:07 +0300 Subject: [PATCH] Update azure sign tool to 5.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The signtool is dependent on dotnet version. This must be updated after the dotnet has been updated. Change-Id: I346acf6dfefc8e70e61ea05a569ebb5cfcf04c85 Reviewed-by: Simo Fält --- coin/provisioning/common/windows/install-azure-tool.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coin/provisioning/common/windows/install-azure-tool.ps1 b/coin/provisioning/common/windows/install-azure-tool.ps1 index 9f82f54e..ccd5c20d 100644 --- a/coin/provisioning/common/windows/install-azure-tool.ps1 +++ b/coin/provisioning/common/windows/install-azure-tool.ps1 @@ -5,6 +5,6 @@ # This script will install Azure singtool using Dotnet SDK $dotnet = "C:\Program Files\dotnet\dotnet.exe" -$version = "2.0.17" +$version = "5.0.0" Run-Executable "$dotnet" "tool install --global AzureSignTool --version $version"