We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af86c99 commit 529b9adCopy full SHA for 529b9ad
build.ps1
@@ -82,7 +82,7 @@ if ($installDotNetSdk -eq $true) {
82
function DotNetPack {
83
param([string]$Project)
84
85
- & $dotnet pack $Project --include-symbols --include-source
+ & $dotnet pack $Project --include-symbols --include-source --tl
86
87
if ($LASTEXITCODE -ne 0) {
88
throw "dotnet pack failed with exit code $LASTEXITCODE"
@@ -99,7 +99,7 @@ function DotNetTest {
99
$additionalArgs += "GitHubActions;report-warnings=false"
100
}
101
102
- & $dotnet test $Project --configuration "Release" $additionalArgs
+ & $dotnet test $Project --configuration "Release" --tl $additionalArgs
103
104
105
throw "dotnet test failed with exit code $LASTEXITCODE"
0 commit comments