File tree 4 files changed +13
-2
lines changed
4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 22
22
inputs :
23
23
packageType : sdk
24
24
useGlobalJson : true
25
+ - task : UseDotNet@2
26
+ displayName : " Install .NET 5.0 Runtime"
27
+ inputs :
28
+ packageType : runtime
29
+ version : 5.x
25
30
# Linux or macOS
26
31
- task : Bash@3
27
32
displayName : Linux / OSX Build
Original file line number Diff line number Diff line change @@ -29,6 +29,12 @@ steps:
29
29
packageType : sdk
30
30
useGlobalJson : true
31
31
32
+ - task : UseDotNet@2
33
+ displayName : " Install .NET 5.0 Runtime"
34
+ inputs :
35
+ packageType : runtime
36
+ version : 5.x
37
+
32
38
- task : BatchScript@1
33
39
displayName : ' FAKE Build'
34
40
inputs :
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ if (Get-Command signclient -ErrorAction SilentlyContinue) {
93
93
else {
94
94
$SignClientFolder = Join-Path $ToolPath " signclient"
95
95
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 "
97
97
}
98
98
99
99
# ##########################################################################
Original file line number Diff line number Diff line change 92
92
# INSTALL SignTool
93
93
# ##########################################################################
94
94
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 "
96
96
if [ $? -ne 0 ]; then
97
97
echo " SignClient already installed."
98
98
fi
You can’t perform that action at this time.
0 commit comments