Skip to content

Commit

Permalink
Fix #33: add strong name support
Browse files Browse the repository at this point in the history
  • Loading branch information
omar committed Jan 14, 2024
1 parent 440c8f0 commit 28f1bd5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 2.1.2 (2024-01-14)
- Add strong name support

### 2.1.1 (2021-11-06)
- Add documentation
- Fix potential System.NullReferenceException in the ToString() methods
Expand Down
Binary file added src/ByteSizeLib/ByteSize.snk
Binary file not shown.
7 changes: 4 additions & 3 deletions src/ByteSizeLib/ByteSizeLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Title>ByteSize</Title>
<Description>ByteSize is a utility class that makes byte size representation in code easier by removing ambiguity of the value being represented. ByteSize is to bytes what System.TimeSpan is to time.</Description>
<Copyright>Copyright © Omar Khudeira 2013-2022</Copyright>
<Version>2.1.1</Version>
<Version>2.1.2</Version>
<AssemblyTitle>ByteSize</AssemblyTitle>
<Authors>Omar Khudeira</Authors>
<TargetFrameworks>netstandard1.0;netstandard2.1;netstandard2.0;net45;net5.0;</TargetFrameworks>
Expand All @@ -14,8 +14,7 @@
<PackageId>ByteSize</PackageId>
<PackageTags>bytes</PackageTags>
<PackageReleaseNotes>
- Add documentation
- Fix potential System.NullReferenceException in the ToString() methods
- Add strong name support

View all release notes at https://github.com/omar/ByteSize/blob/master/CHANGELOG.md.</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/omar/ByteSize</PackageProjectUrl>
Expand All @@ -27,6 +26,8 @@ View all release notes at https://github.com/omar/ByteSize/blob/master/CHANGELOG
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyOriginatorKeyFile>ByteSize.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<PropertyGroup Condition=" '$(GITHUB_ACTIONS)' == 'true'">
Expand Down

0 comments on commit 28f1bd5

Please sign in to comment.