Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/augustoproiete/strong-name

Strong Name Key Pair used to sign assemblies of my open-source projects
https://github.com/augustoproiete/strong-name

hacktoberfest snk strong-name strongname

Last synced: 16 days ago
JSON representation

Strong Name Key Pair used to sign assemblies of my open-source projects

Awesome Lists containing this project

README

        

| README.md |
|:---|

augustoproiete.snk :key:


Strong Name Key Pair used to sign assemblies of my open-source projects

### Public key (hash algorithm: sha1):
```
0024000004800000940000000602000000240000525341310004000001000100f9da1733f4a1fe
e7a261abfd4a0847b958ac3bfdb1b6a4690823d0b5dc559ba54337722108b1284870360a8d062a
06994126f1fb321f61dbbbc26a52337f780236f37f4e3e376605f1eed1401813f6f61fff6c9c16
87404584d68a6f7a17348ece3086df267ec73de42eba0898bf609db634b81f51ec7c38200a17a3
c0092dfb
```

### Public key token
```
e9f30f7a3d1ee0f9
```

### csproj

#### .NET 5.0 and onwards

```xml



```

#### Before .NET 5.0

```xml


<_Parameter1>ReplaceWithAssemblyName, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f9da1733f4a1fee7a261abfd4a0847b958ac3bfdb1b6a4690823d0b5dc559ba54337722108b1284870360a8d062a06994126f1fb321f61dbbbc26a52337f780236f37f4e3e376605f1eed1401813f6f61fff6c9c1687404584d68a6f7a17348ece3086df267ec73de42eba0898bf609db634b81f51ec7c38200a17a3c0092dfb


```

### AssemblyInfo.cs

```csharp
[assembly: InternalsVisibleTo("ReplaceWithAssemblyName, PublicKey=" +
"0024000004800000940000000602000000240000525341310004000001000100f9da1733f4a1fe" +
"e7a261abfd4a0847b958ac3bfdb1b6a4690823d0b5dc559ba54337722108b1284870360a8d062a" +
"06994126f1fb321f61dbbbc26a52337f780236f37f4e3e376605f1eed1401813f6f61fff6c9c16" +
"87404584d68a6f7a17348ece3086df267ec73de42eba0898bf609db634b81f51ec7c38200a17a3" +
"c0092dfb")]
```

---

_Copyright © 2019-2023 C. Augusto Proiete & Contributors - Provided under the [Apache License, Version 2.0](LICENSE)._