diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2024-01-31 15:43:31 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2024-01-31 15:43:31 +0700 |
commit | 0b5288188c1e08323161f4e4c2510f077a148d42 (patch) | |
tree | c4487f684bb0c871fc070de5622047b8db015fcf /crypto | |
parent | Update Readme for 2.3.0 (diff) | |
download | BouncyCastle.NET-ed25519-0b5288188c1e08323161f4e4c2510f077a148d42.tar.xz |
Add retries to make signing more reliable
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/src/BouncyCastle.Crypto.csproj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/src/BouncyCastle.Crypto.csproj b/crypto/src/BouncyCastle.Crypto.csproj index 963f22188..a6a4f2788 100644 --- a/crypto/src/BouncyCastle.Crypto.csproj +++ b/crypto/src/BouncyCastle.Crypto.csproj @@ -113,6 +113,7 @@ </PropertyGroup> </Target> <Target Name="SignAssemblies" AfterTargets="PostBuildEvent" Condition="'$(Configuration)'=='Publish'"> - <Exec Command="call "$(ProjectDir)..\..\signfile.bat" "$(TargetPath)"" /> + <Exec Command="call "$(ProjectDir)..\..\signfile.bat" "$(TargetPath)"" + IgnoreStandardErrorWarningFormat="true" /> </Target> </Project> |