aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/windows/install-azure-tool.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'coin/provisioning/common/windows/install-azure-tool.ps1')
-rw-r--r--coin/provisioning/common/windows/install-azure-tool.ps110
1 files changed, 10 insertions, 0 deletions
diff --git a/coin/provisioning/common/windows/install-azure-tool.ps1 b/coin/provisioning/common/windows/install-azure-tool.ps1
new file mode 100644
index 00000000..9f82f54e
--- /dev/null
+++ b/coin/provisioning/common/windows/install-azure-tool.ps1
@@ -0,0 +1,10 @@
+# Copyright (C) 2020 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+. "$PSScriptRoot\helpers.ps1"
+
+# This script will install Azure singtool using Dotnet SDK
+$dotnet = "C:\Program Files\dotnet\dotnet.exe"
+
+$version = "2.0.17"
+Run-Executable "$dotnet" "tool install --global AzureSignTool --version $version"
+