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" }