From 78bfadfcfb5c76d9a2803e13557911f51e0b68d0 Mon Sep 17 00:00:00 2001
From: dotnet-maestro <@dotnet-maestro>
Date: Fri, 15 Feb 2019 13:02:56 +0000
Subject: [PATCH] Update dependencies from https://github.com/dotnet/arcade
 build 20190214.4
This change updates the following dependencies
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19114.4
---
 eng/Version.Details.xml | 4 ++--
 eng/common/tools.ps1    | 8 ++++----
 eng/common/tools.sh     | 8 ++++++--
 global.json             | 2 +-
 4 files changed, 13 insertions(+), 9 deletions(-)
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index d0877411dd7..e17a0a759ac 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -47,9 +47,9 @@
     
   
   
-    
+    
       https://github.com/dotnet/arcade
-      9cb5f28be59a1ba9fe6bfb86449b216cfcdfb50e
+      03497f16b93264158c28cee4eea767b53bc750f5
     
   
 
diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1
index d1ed296dd6b..fbcc4e3ba07 100644
--- a/eng/common/tools.ps1
+++ b/eng/common/tools.ps1
@@ -417,15 +417,15 @@ function InitializeToolset() {
 
   $proj = Join-Path $ToolsetDir "restore.proj"
   $bl = if ($binaryLog) { "/bl:" + (Join-Path $LogDir "ToolsetRestore.binlog") } else { "" }
-  
+
   '' | Set-Content $proj
-  MSBuild $proj $bl /t:__WriteToolsetLocation /noconsolelogger /p:__ToolsetLocationOutputFile=$toolsetLocationFile
-  
+  MSBuild $proj $bl /t:__WriteToolsetLocation /clp:ErrorsOnly`;NoSummary /p:__ToolsetLocationOutputFile=$toolsetLocationFile
+
   $path = Get-Content $toolsetLocationFile -TotalCount 1
   if (!(Test-Path $path)) {
     throw "Invalid toolset path: $path"
   }
-  
+
   return $global:_ToolsetBuildProj = $path
 }
 
diff --git a/eng/common/tools.sh b/eng/common/tools.sh
index 115a56a827d..633a8167b09 100644
--- a/eng/common/tools.sh
+++ b/eng/common/tools.sh
@@ -238,11 +238,15 @@ function InitializeToolset {
     ExitWithExitCode 2
   fi
 
-  local toolset_restore_log="$log_dir/ToolsetRestore.binlog"
   local proj="$toolset_dir/restore.proj"
 
+  local bl=""
+  if [[ "$binary_log" == true ]]; then
+    bl="/bl:$log_dir/ToolsetRestore.binlog"
+  fi
+  
   echo '' > "$proj"
-  MSBuild "$proj" /t:__WriteToolsetLocation /noconsolelogger /bl:"$toolset_restore_log" /p:__ToolsetLocationOutputFile="$toolset_location_file"
+  MSBuild "$proj" $bl /t:__WriteToolsetLocation /clp:ErrorsOnly\;NoSummary /p:__ToolsetLocationOutputFile="$toolset_location_file"
 
   local toolset_build_proj=`cat "$toolset_location_file"`
 
diff --git a/global.json b/global.json
index 2920e88f427..7c23cce3a7d 100644
--- a/global.json
+++ b/global.json
@@ -9,6 +9,6 @@
     "version": "3.0.100-preview-010024"
   },
   "msbuild-sdks": {
-    "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19113.1"
+    "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19114.4"
   }
 }