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"