We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b877c27 commit 76a2a58Copy full SHA for 76a2a58
tools/releaseBuild/yaml/upload.yml
@@ -5,7 +5,13 @@ parameters:
5
steps:
6
7
- powershell: |
8
- Install-Module PowerShellGet -RequiredVersion 2.2.5 -SkipPublisherCheck
+ [System.Net.ServicePointManager]::SecurityProtocol =
9
+ [System.Net.ServicePointManager]::SecurityProtocol -bor
10
+ [System.Security.Authentication.SslProtocols]::Tls12 -bor
11
+ [System.Security.Authentication.SslProtocols]::Tls11
12
+
13
+ Get-PackageProvider -Name NuGet -ForceBootstrap
14
+ Install-Module PowerShellGet -RequiredVersion 2.2.5 -SkipPublisherCheck -Force
15
displayName: Update PowerShell Get
16
17
0 commit comments