From cfce060598bf41ee2d1d90daff588d788b71410c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Barr=C3=A9?= Date: Mon, 5 Aug 2024 15:39:10 -0400 Subject: [PATCH] improve comment --- Build.ps1 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Build.ps1 b/Build.ps1 index b98db3c..e58dedc 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -20,8 +20,10 @@ Process { Push-Location $workingDir Remove-Item $outputDir -Force -Recurse -ErrorAction SilentlyContinue - # Duende.IdentityServer fails signature validation - $env:DOTNET_NUGET_SIGNATURE_VERIFICATION="false" + # Duende.IdentityServer fails signature validation + # https://github.com/DuendeSoftware/Support/issues/1352 + $env:DOTNET_NUGET_SIGNATURE_VERIFICATION="false" + Exec { & dotnet clean -c Release } Exec { & dotnet build -c Release } Exec { & dotnet test -c Release --no-build --results-directory "$outputDir" --no-restore -l "trx" -l "console;verbosity=detailed" }