Skip to content

Commit

Permalink
Use terminal logger
Browse files Browse the repository at this point in the history
Use the new MSBuild terminal logger.
  • Loading branch information
martincostello committed Nov 5, 2023
1 parent 8c4354b commit a831057
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ if ($installDotNetSdk -eq $true) {
function DotNetTest {
param([string]$Project)

$additionalArgs = @()
$additionalArgs = @("--tl")

if (![string]::IsNullOrEmpty($env:GITHUB_SHA)) {
$additionalArgs += "--logger"
Expand All @@ -85,7 +85,7 @@ function DotNetTest {
function DotNetPublish {
param([string]$Project)

$additionalArgs = @()
$additionalArgs = @("--tl")

if ($IsLinux -And (-Not $UseManagedRuntime)) {
$additionalArgs += "--runtime"
Expand Down

0 comments on commit a831057

Please sign in to comment.