Merge pull request #240 from shawwn/2018-06-21/fix-download

Fix DownloadFile for TLS connections
This commit is contained in:
Christopher Snowhill 2018-06-23 19:37:45 -07:00 committed by GitHub
commit 2125433cd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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"