Skip to content

Commit

Permalink
Updated logo and editorbrowsable attribute for .NET 8.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkCiliaVincenti committed Nov 24, 2024
1 parent 80d1167 commit 6f0f137
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ![ReadHeavyCollections](https://raw.githubusercontent.com/MarkCiliaVincenti/ReadHeavyCollections/master/logo32.png) ReadHeavyCollections
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/MarkCiliaVincenti/ReadHeavyCollections/dotnet.yml?branch=master&logo=github&style=flat)](https://actions-badge.atrox.dev/MarkCiliaVincenti/ReadHeavyCollections/goto?ref=master) [![NuGet](https://img.shields.io/nuget/v/ReadHeavyCollections?label=NuGet&logo=nuget&style=flat)](https://www.nuget.org/packages/ReadHeavyCollections) [![NuGet](https://img.shields.io/nuget/dt/ReadHeavyCollections?logo=nuget&style=flat)](https://www.nuget.org/packages/ReadHeavyCollections) [![Codacy Grade](https://img.shields.io/codacy/grade/67468ddafeca43ab9c1e4820551216f4?style=flat)](https://app.codacy.com/gh/MarkCiliaVincenti/ReadHeavyCollections/dashboard) [![Codecov](https://img.shields.io/codecov/c/github/MarkCiliaVincenti/ReadHeavyCollections?label=coverage&logo=codecov&style=flat)](https://app.codecov.io/gh/MarkCiliaVincenti/ReadHeavyCollections)

An experimental library that provides a `ReadHeavyDictionary` and a `ReadHeavySet`, replacements for the `Dictionary` and `HashSet`, with superior read performance at the expense of much slower writing. Ideal in situations where a dictionary is infrequently updated but is very often read from.
An experimental .NET library that provides a `ReadHeavyDictionary` and a `ReadHeavySet`, replacements for the `Dictionary` and `HashSet`, with superior read performance at the expense of much slower writing. Ideal in situations where a dictionary is infrequently updated but is very often read from.
6 changes: 3 additions & 3 deletions ReadHeavyCollections/ReadHeavyCollections.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
<PackageProjectUrl>https://github.com/MarkCiliaVincenti/ReadHeavyCollections</PackageProjectUrl>
<Copyright>MIT</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>0.0.1-beta</Version>
<Version>0.0.2-beta</Version>
<PackageIcon>logo.png</PackageIcon>
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
<Description>A dictionary and a set that offer very fast read speed in expense of slow write speed.</Description>
<Copyright>© 2024 Mark Cilia Vincenti</Copyright>
<PackageTags>dictionary,set,hashset,read,heavy,fast</PackageTags>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AssemblyVersion>0.0.1.1</AssemblyVersion>
<FileVersion>0.0.1.1</FileVersion>
<AssemblyVersion>0.0.2.0</AssemblyVersion>
<FileVersion>0.0.2.0</FileVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
Expand Down
4 changes: 1 addition & 3 deletions ReadHeavyCollections/ReadHeavyDictionary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections;
using System.Collections.Frozen;
using System.Collections.Generic;
#if NET9_0_OR_GREATER
#if NET8_0_OR_GREATER
using System.ComponentModel;
#endif
using System.Diagnostics;
Expand Down Expand Up @@ -529,8 +529,6 @@ void IDictionary.Remove(object key)
/// <param name="context"><inheritdoc /></param>
#if NET8_0_OR_GREATER
[Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId = "SYSLIB0051", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
#endif
#if NET9_0_OR_GREATER
[EditorBrowsable(EditorBrowsableState.Never)]
#endif
[MethodImpl(MethodImplOptions.AggressiveInlining)]
Expand Down
4 changes: 1 addition & 3 deletions ReadHeavyCollections/ReadHeavySet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections;
using System.Collections.Frozen;
using System.Collections.Generic;
#if NET9_0_OR_GREATER
#if NET8_0_OR_GREATER
using System.ComponentModel;
#endif
using System.Diagnostics;
Expand Down Expand Up @@ -378,8 +378,6 @@ void ICollection.CopyTo(Array array, int index)
/// <param name="context"><inheritdoc /></param>
#if NET8_0_OR_GREATER
[Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId = "SYSLIB0051", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
#endif
#if NET9_0_OR_GREATER
[EditorBrowsable(EditorBrowsableState.Never)]
#endif
[MethodImpl(MethodImplOptions.AggressiveInlining)]
Expand Down
Binary file modified logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified logo32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6f0f137

Please sign in to comment.