ChoPGP
ChoPGP copied to clipboard
The Assembly is not stongly signed
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>
Can't, the dependency 'BouncyCastle.Crypto.dll' is not strongly signed.
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
Excellent wrapper! I would also ask that you please strongly sign the assembly.