From: dotnet-maestro[bot] Date: Fri, 7 Dec 2018 14:48:12 +0000 (+0000) Subject: Update dependency files (#21403) X-Git-Tag: accepted/tizen/unified/20190422.045933~415 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a0ee8a67fd104d906f19b9273eaf801720c25271;p=platform%2Fupstream%2Fcoreclr.git Update dependency files (#21403) * Update dependencies from https://github.com/dotnet/arcade build 626 This change updates the following dependencies - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.18605.14 - Microsoft.DotNet.Helix.Sdk - 1.0.0-beta.18605.14 * Update dependencies from https://github.com/dotnet/arcade build 650 This change updates the following dependencies - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.18606.9 - Microsoft.DotNet.Helix.Sdk - 1.0.0-beta.18606.9 --- diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fde5343..2822342 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -2,13 +2,13 @@ - + https://github.com/dotnet/arcade - f14da17c737c4f2b5408c4c0801d7e913a95766f + fe25f076bdd44568aa6334d4266e6553719cf91d - + https://github.com/dotnet/arcade - f14da17c737c4f2b5408c4c0801d7e913a95766f + fe25f076bdd44568aa6334d4266e6553719cf91d diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 29b54a1..290637c 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -176,8 +176,9 @@ function InstallXCopyMSBuild([string] $packageVersion) { # or $null if no instance meeting the requirements is found on the machine. # function LocateVisualStudio { - $vswhereVersion = Get-Member -InputObject $GlobalJson.tools -Name "vswhere" - if ($vsWhereVersion -eq $null) { + if (Get-Member -InputObject $GlobalJson.tools -Name "vswhere") { + $vswhereVersion = $GlobalJson.tools.vswhere + } else { $vswhereVersion = "2.5.2" } diff --git a/global.json b/global.json index eb6d3e5..d8fd519 100644 --- a/global.json +++ b/global.json @@ -7,7 +7,7 @@ "python": "2.7.15" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.18604.15", - "Microsoft.DotNet.Helix.Sdk": "1.0.0-beta.18604.15" + "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.18606.9", + "Microsoft.DotNet.Helix.Sdk": "1.0.0-beta.18606.9" } }