Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2020-03-03 01:55:51 +0300
committerGitHub <noreply@github.com>2020-03-03 01:55:51 +0300
commita9bfc450a9da6b050ba043ca43b9241beb6f3f60 (patch)
tree6896101e83d027805c059538dd8f84b6be1faecd /eng/common/tools.ps1
parent5842f2b035a21d0306cfe168a9954526f0d7c745 (diff)
[master] Update dependencies from dotnet/arcade (#954)
* Update dependencies from https://github.com/dotnet/arcade build 20200216.1 - Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20116.1 * Update dependencies from https://github.com/dotnet/arcade build 20200223.1 - Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20123.1 * Update dependencies from https://github.com/dotnet/arcade build 20200225.9 - Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20125.9 * Update dependencies from https://github.com/dotnet/arcade build 20200301.1 - Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20151.1
Diffstat (limited to 'eng/common/tools.ps1')
-rw-r--r--eng/common/tools.ps17
1 files changed, 6 insertions, 1 deletions
diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1
index fef7e5a3f..a45302b37 100644
--- a/eng/common/tools.ps1
+++ b/eng/common/tools.ps1
@@ -399,7 +399,12 @@ function LocateVisualStudio([object]$vsRequirements = $null){
if (!(Test-Path $vsWhereExe)) {
Create-Directory $vsWhereDir
Write-Host 'Downloading vswhere'
- Invoke-WebRequest "https://github.com/Microsoft/vswhere/releases/download/$vswhereVersion/vswhere.exe" -OutFile $vswhereExe
+ try {
+ Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -OutFile $vswhereExe
+ }
+ catch {
+ Write-PipelineTelemetryError -Category 'InitializeToolset' -Message $_
+ }
}
if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs }