From 5d6e437e34be086f2d90cc309837caef6e234fa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Matou=C5=A1ek?= Date: Thu, 25 Apr 2019 13:51:41 -0700 Subject: [PATCH] Remove usage of QuietRestore (#35264) --- eng/build.ps1 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/eng/build.ps1 b/eng/build.ps1 index 1f040e8077732..dd47f54d95249 100644 --- a/eng/build.ps1 +++ b/eng/build.ps1 @@ -214,10 +214,6 @@ function BuildSolution() { $enableAnalyzers = !$skipAnalyzers $toolsetBuildProj = InitializeToolset - # Have to disable quiet restore during bootstrap builds to work around - # an arcade bug - # https://github.com/dotnet/arcade/issues/2220 - $quietRestore = !($ci -or ($bootstrapDir -ne "")) $testTargetFrameworks = if ($testCoreClr) { "netcoreapp3.0%3Bnetcoreapp2.1" } else { "" } $ibcSourceBranchName = GetIbcSourceBranchName @@ -250,8 +246,6 @@ function BuildSolution() { /p:OfficialBuildId=$officialBuildId ` /p:UseRoslynAnalyzers=$enableAnalyzers ` /p:BootstrapBuildPath=$bootstrapDir ` - /p:QuietRestore=$quietRestore ` - /p:QuietRestoreBinaryLog=$binaryLog ` /p:TestTargetFrameworks=$testTargetFrameworks ` /p:TreatWarningsAsErrors=true ` /p:VisualStudioIbcSourceBranchName=$ibcSourceBranchName `