mirror of https://github.com/icsharpcode/ILSpy.git
Browse Source
Local OpenSSL defaults can reject legacy SHA-1 signatures during dotnet operations. Set the required compatibility flag inside the repository scripts so restore, build, publish, clean, and formatting paths do not depend on each caller's shell environment. Assisted-by: OpenCode:openai/gpt-5.5:OpenCodepull/3829/head
8 changed files with 11 additions and 1 deletions
@ -1,5 +1,6 @@ |
|||||||
#!/usr/bin/env pwsh |
#!/usr/bin/env pwsh |
||||||
# Clean the Debug and Release build outputs of ILSpy.sln. |
# Clean the Debug and Release build outputs of ILSpy.sln. |
||||||
$ErrorActionPreference = 'Stop' |
$ErrorActionPreference = 'Stop' |
||||||
|
$env:OPENSSL_ENABLE_SHA1_SIGNATURES = '1' |
||||||
dotnet clean ILSpy.sln -c Debug "-p:Platform=Any CPU" @args |
dotnet clean ILSpy.sln -c Debug "-p:Platform=Any CPU" @args |
||||||
dotnet clean ILSpy.sln -c Release "-p:Platform=Any CPU" @args |
dotnet clean ILSpy.sln -c Release "-p:Platform=Any CPU" @args |
||||||
|
|||||||
Loading…
Reference in new issue