From ff3a891a473d335fd7b09be3e1babe5b1ff2bc42 Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Sun, 5 Nov 2023 16:31:01 +0000 Subject: [PATCH] Use terminal logger Use the new MSBuild terminal logger. --- build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.ps1 b/build.ps1 index b879ee26..dabf653e 100755 --- a/build.ps1 +++ b/build.ps1 @@ -86,7 +86,7 @@ function DotNetPack { $additionalArgs += $VersionSuffix } - & $dotnet pack $Project --include-symbols --include-source $additionalArgs + & $dotnet pack $Project --include-symbols --include-source --tl $additionalArgs if ($LASTEXITCODE -ne 0) { throw "dotnet pack failed with exit code $LASTEXITCODE" @@ -103,7 +103,7 @@ function DotNetTest { $additionalArgs += "GitHubActions;report-warnings=false" } - & $dotnet test $Project --configuration "Release" $additionalArgs + & $dotnet test $Project --configuration "Release" --tl $additionalArgs if ($LASTEXITCODE -ne 0) { throw "dotnet test failed with exit code $LASTEXITCODE"