ChoPGP icon indicating copy to clipboard operation
ChoPGP copied to clipboard

The Assembly is not stongly signed

Open tommylindgren opened this issue 6 years ago • 3 comments

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>

tommylindgren avatar Jan 28 '19 08:01 tommylindgren

Can't, the dependency 'BouncyCastle.Crypto.dll' is not strongly signed.

Cinchoo avatar Feb 02 '19 23:02 Cinchoo

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

PugachA avatar Dec 01 '20 15:12 PugachA

Excellent wrapper! I would also ask that you please strongly sign the assembly.

GBeans avatar Sep 01 '21 13:09 GBeans