Skip to content

Commit dec71bd

Browse files
authored
Fix SignClient version (#59)
1 parent d00a21e commit dec71bd

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

build-system/azure-pipeline.template.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
inputs:
2323
packageType: sdk
2424
useGlobalJson: true
25+
- task: UseDotNet@2
26+
displayName: "Install .NET 5.0 Runtime"
27+
inputs:
28+
packageType: runtime
29+
version: 5.x
2530
# Linux or macOS
2631
- task: Bash@3
2732
displayName: Linux / OSX Build

build-system/windows-release.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ steps:
2929
packageType: sdk
3030
useGlobalJson: true
3131

32+
- task: UseDotNet@2
33+
displayName: "Install .NET 5.0 Runtime"
34+
inputs:
35+
packageType: runtime
36+
version: 5.x
37+
3238
- task: BatchScript@1
3339
displayName: 'FAKE Build'
3440
inputs:

build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ if (Get-Command signclient -ErrorAction SilentlyContinue) {
9393
else{
9494
$SignClientFolder = Join-Path $ToolPath "signclient"
9595
Write-Host "SignClient not found. Installing to ... $SignClientFolder"
96-
dotnet tool install SignClient --version 8.0.206 --tool-path "$SignClientFolder"
96+
dotnet tool install SignClient --version 1.3.155 --tool-path "$SignClientFolder"
9797
}
9898

9999
###########################################################################

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ fi
9292
# INSTALL SignTool
9393
###########################################################################
9494
if [ ! -f "$SIGNTOOL_EXE" ]; then
95-
"$SCRIPT_DIR/.dotnet/dotnet" tool install SignClient --version 8.0.206 --tool-path "$SIGNCLIENT_DIR"
95+
dotnet tool install SignClient --version 1.3.155 --tool-path "$SIGNCLIENT_DIR"
9696
if [ $? -ne 0 ]; then
9797
echo "SignClient already installed."
9898
fi

0 commit comments

Comments
 (0)