Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/scripts/DownloadDotNetRuntimeInstaller.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ else
if(-not(Test-Path $outputPath))
{
Write-Host "Downloading $downloadurl to $outputPath"
Invoke-WebRequest $downloadurl -OutFile $outputPath
Invoke-WebRequest $downloadurl -OutFile $outputPath -UseBasicParsing
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/DownloadVCLibsDesktop.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $downloadurl = "https://aka.ms/Microsoft.VCLibs.$Platform.14.00.Desktop.appx"
if(-not(Test-Path $outputPath))
{
Write-Host "Downloading $downloadurl to $outputPath"
Invoke-WebRequest $downloadurl -OutFile $outputPath
Invoke-WebRequest $downloadurl -OutFile $outputPath -UseBasicParsing
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/DownloadVCRedistInstaller.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $downloadurl = "https://aka.ms/vs/17/release/vc_redist.$Platform.exe"
if(-not(Test-Path $outputPath))
{
Write-Host "Downloading $downloadurl to $outputPath"
Invoke-WebRequest $downloadurl -OutFile $outputPath
Invoke-WebRequest $downloadurl -OutFile $outputPath -UseBasicParsing
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/windows-sdk.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function Install-EXE
Write-Host "Downloading $Name..."
$FilePath = "${env:Temp}\$Name"

Invoke-WebRequest -Uri $Url -OutFile $FilePath
Invoke-WebRequest -Uri $Url -OutFile $FilePath -UseBasicParsing

Write-Host "Starting Install $Name..."
$process = Start-Process -FilePath $FilePath -ArgumentList $ArgumentList -Wait -PassThru
Expand Down
2 changes: 1 addition & 1 deletion dev/MRTCore/build/DownloadDotNetCoreSdk.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Write-Host "Installing .NET SDK..."

[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Ssl3,Tls,Tls11,Tls12'

Invoke-WebRequest https://dot.net/v1/dotnet-install.ps1 -OutFile $dotnetInstallScript
Invoke-WebRequest https://dot.net/v1/dotnet-install.ps1 -OutFile $dotnetInstallScript -UseBasicParsing

if (-not $latestAlreadyInstalled)
{
Expand Down
2 changes: 1 addition & 1 deletion dev/MRTCore/build/MSBuildFunctions.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $MSBuildUninstallParams = "uninstall --norestart --quiet --wait --force --instal
function Download-MSBuild([string]$OutFile)
{
Write-Host -NoNewline "Downloading $OutFile... "
Invoke-WebRequest -Uri $MSBuildInstallURI -OutFile $OutFile
Invoke-WebRequest -Uri $MSBuildInstallURI -OutFile $OutFile -UseBasicParsing
Write-Host -ForegroundColor Green Done.
}

Expand Down