Skip to content

Commit

Permalink
[C#] 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard committed Jan 26, 2025
1 parent 3f7e052 commit c724fb7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
using Platform.Reflection;
using Platform.Unsafe;

#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member

namespace Platform.Data.Doublets.Sequences.Numbers.Byte;

public class BytesToRawNumberSequenceConverter<TLinkAddress> : LinksDecoratorBase<TLinkAddress>, IConverter<IList<byte>, TLinkAddress> where TLinkAddress : struct, IUnsignedNumber<TLinkAddress>, IComparisonOperators<TLinkAddress, TLinkAddress, bool>, IShiftOperators<TLinkAddress, int, TLinkAddress>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
using Platform.Reflection;
using Platform.Unsafe;

#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member

namespace Platform.Data.Doublets.Sequences.Numbers.Byte;

public class RawNumberSequenceToBytesConverter<TLinkAddress> : LinksDecoratorBase<TLinkAddress>, IConverter<TLinkAddress, IList<byte>> where TLinkAddress : struct, IUnsignedNumber<TLinkAddress>, IComparisonOperators<TLinkAddress, TLinkAddress, bool>, IShiftOperators<TLinkAddress, int, TLinkAddress>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>LinksPlatform's Platform.Data.Doublets.Sequences Class Library</Description>
<Copyright>konard, FreePhoenix888</Copyright>
<AssemblyTitle>Platform.Data.Doublets.Sequences</AssemblyTitle>
<VersionPrefix>0.6.1</VersionPrefix>
<VersionPrefix>0.6.2</VersionPrefix>
<Authors>konard, FreePhoenix888</Authors>
<TargetFramework>net8</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand All @@ -24,7 +24,7 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<LangVersion>latest</LangVersion>
<PackageReleaseNotes>Move to .NET 8.</PackageReleaseNotes>
<PackageReleaseNotes>Reduce number of warnings.</PackageReleaseNotes>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down

0 comments on commit c724fb7

Please sign in to comment.