Skip to content

Commit

Permalink
Merge pull request #208 from SceneGate/feature/split-binaryserializer
Browse files Browse the repository at this point in the history
✨ Refactor and improvements in binary object (de)serialization
  • Loading branch information
pleonex committed Jan 30, 2024
2 parents 7ae5d2c + 794cc76 commit bffa8c5
Show file tree
Hide file tree
Showing 21 changed files with 2,125 additions and 1,399 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ dotnet_diagnostic.SA0001.severity = none # Disable documentation
dotnet_diagnostic.SA1402.severity = none # Multiple types in the same file
dotnet_diagnostic.SA1600.severity = none # Disable documentation
dotnet_diagnostic.SA1601.severity = none # Disable documentation
dotnet_diagnostic.SA1602.severity = none # Disable documentation
dotnet_diagnostic.SA1201.severity = none # Allow enums inside classes
dotnet_diagnostic.S1144.severity = none # Remove unused setter
dotnet_diagnostic.S2094.severity = none # Remove empty class
Expand Down
2 changes: 1 addition & 1 deletion build/orchestrator/BuildSystem.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Frosting.PleOps.Recipe" Version="1.0.0" />
<PackageReference Include="Cake.Frosting.PleOps.Recipe" Version="1.0.2" />
</ItemGroup>

</Project>
13 changes: 5 additions & 8 deletions src/Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
<Project>
<!-- Centralize dependency management -->
<ItemGroup>
<PackageVersion Include="System.Text.Encoding.CodePages" Version="6.0.0" />
<PackageVersion Include="Microsoft.IO.RecyclableMemoryStream" Version="2.2.0" />

<PackageVersion Include="System.Text.Encoding.CodePages" Version="8.0.0" />
<PackageVersion Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.0" />
<PackageVersion Include="FluentAssertions" Version="6.12.0" />
<PackageVersion Include="NUnit" Version="3.14.0" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.0" />
<PackageVersion Include="Moq" Version="4.20.69" />

<PackageVersion Include="BenchmarkDotNet" Version="0.13.1" />
<PackageVersion Include="Moq" Version="4.20.70" />
<PackageVersion Include="BenchmarkDotNet" Version="0.13.12" />
<PackageVersion Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />

<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.12.0.78982" />
<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.17.0.82934" />
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.507" />
</ItemGroup>
</Project>
Loading

0 comments on commit bffa8c5

Please sign in to comment.