Fix DownloadFile for TLS connections

This commit is contained in:
Shawn Presser 2018-06-21 20:59:27 -05:00
parent 005c555649
commit 749be375a9

View File

@ -5,6 +5,9 @@ Param(
[string]$Task
)
# https://stackoverflow.com/a/41618979/9919772
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$solution = "vgmstream_full.sln"
$vswhere = "dependencies/vswhere.exe"
$config = "/p:Configuration=Release"