From bdad1aa3bc565123e25741cc80462c231c9cd0e5 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Mon, 18 Mar 2019 10:44:36 -0700 Subject: [PATCH] Respond to PR feedback --- eng/build.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eng/build.ps1 b/eng/build.ps1 index 97fe0e5bdf6..a4078f68334 100644 --- a/eng/build.ps1 +++ b/eng/build.ps1 @@ -219,8 +219,11 @@ 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) { "netcoreapp2.1" } else { "" } + $testTargetFrameworks = if ($testCoreClr) { "netcoreapp2.1" } else { "" } $ibcSourceBranchName = GetIbcSourceBranchName $ibcDropId = if ($officialIbcDropId -ne "default") { $officialIbcDropId } else { "" } -- GitLab