You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please, add a strong name, because BouncyCastle.Crypto.dll has a strong name.
>sn -v BouncyCastle.Crypto.dll
Microsoft (R) .NET Framework Strong Name Utility Version 4.0.30319.0
Copyright (c) Microsoft Corporation. All rights reserved.
Assembly 'BouncyCastle.Crypto.dll' is valid
Please make the assembly stongly signed. This is needed to be able to add the assembly to the Global Assembly Cache.
This could be done by creating a signing key using sn.exe and adding the key to the base of the project and adding the following to the .csproj file:
<PropertyGroup> <SignAssembly>true</SignAssembly> </PropertyGroup> <PropertyGroup> <AssemblyOriginatorKeyFile>ChoPGP.snk</AssemblyOriginatorKeyFile> </PropertyGroup> <ItemGroup> <None Include="ChoPGP.snk" /> <None Include="packages.config" /> </ItemGroup>
The text was updated successfully, but these errors were encountered: