Skip to content

Commit 529b9ad

Browse files
Use terminal logger
Use the new MSBuild terminal logger.
1 parent af86c99 commit 529b9ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ if ($installDotNetSdk -eq $true) {
8282
function DotNetPack {
8383
param([string]$Project)
8484

85-
& $dotnet pack $Project --include-symbols --include-source
85+
& $dotnet pack $Project --include-symbols --include-source --tl
8686

8787
if ($LASTEXITCODE -ne 0) {
8888
throw "dotnet pack failed with exit code $LASTEXITCODE"
@@ -99,7 +99,7 @@ function DotNetTest {
9999
$additionalArgs += "GitHubActions;report-warnings=false"
100100
}
101101

102-
& $dotnet test $Project --configuration "Release" $additionalArgs
102+
& $dotnet test $Project --configuration "Release" --tl $additionalArgs
103103

104104
if ($LASTEXITCODE -ne 0) {
105105
throw "dotnet test failed with exit code $LASTEXITCODE"

0 commit comments

Comments
 (0)