Cleanup
Some checks failed
NuGet Publish / build-and-pack (push) Failing after 33s
NuGet Publish / publish-to-gitea (push) Has been skipped

This commit is contained in:
Joseph Doherty
2026-02-21 08:12:22 -05:00
parent a70d8befae
commit c5def6dbe1
24 changed files with 26 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using ZB.MOM.WW.CBDD.Bson.IO;
namespace ZB.MOM.WW.CBDD.Bson; namespace ZB.MOM.WW.CBDD.Bson;

View File

@@ -2,7 +2,7 @@ using System.Buffers;
using System.Buffers.Binary; using System.Buffers.Binary;
using System.Text; using System.Text;
namespace ZB.MOM.WW.CBDD.Bson; namespace ZB.MOM.WW.CBDD.Bson.IO;
/// <summary> /// <summary>
/// BSON writer that serializes to an IBufferWriter, enabling streaming serialization /// BSON writer that serializes to an IBufferWriter, enabling streaming serialization

View File

@@ -2,7 +2,7 @@ using System.Buffers.Binary;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Text; using System.Text;
namespace ZB.MOM.WW.CBDD.Bson; namespace ZB.MOM.WW.CBDD.Bson.IO;
/// <summary> /// <summary>
/// Zero-allocation BSON reader using ReadOnlySpan&lt;byte&gt;. /// Zero-allocation BSON reader using ReadOnlySpan&lt;byte&gt;.

View File

@@ -2,7 +2,7 @@ using System.Buffers.Binary;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Text; using System.Text;
namespace ZB.MOM.WW.CBDD.Bson; namespace ZB.MOM.WW.CBDD.Bson.IO;
/// <summary> /// <summary>
/// Zero-allocation BSON writer using Span&lt;byte&gt;. /// Zero-allocation BSON writer using Span&lt;byte&gt;.

View File

@@ -1,3 +1,5 @@
using ZB.MOM.WW.CBDD.Bson.IO;
namespace ZB.MOM.WW.CBDD.Bson.Schema; namespace ZB.MOM.WW.CBDD.Bson.Schema;
public class BsonField public class BsonField

View File

@@ -1,3 +1,5 @@
using ZB.MOM.WW.CBDD.Bson.IO;
namespace ZB.MOM.WW.CBDD.Bson.Schema; namespace ZB.MOM.WW.CBDD.Bson.Schema;
public class BsonSchema public class BsonSchema

View File

@@ -1,6 +1,7 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Threading.Channels; using System.Threading.Channels;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Core.Collections; using ZB.MOM.WW.CBDD.Core.Collections;
using ZB.MOM.WW.CBDD.Core.Indexing; using ZB.MOM.WW.CBDD.Core.Indexing;

View File

@@ -1,4 +1,5 @@
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Bson.Schema; using ZB.MOM.WW.CBDD.Bson.Schema;
using ZB.MOM.WW.CBDD.Core.Indexing; using ZB.MOM.WW.CBDD.Core.Indexing;

View File

@@ -1,6 +1,7 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Core.Storage; using ZB.MOM.WW.CBDD.Core.Storage;
namespace ZB.MOM.WW.CBDD.Core.Collections; namespace ZB.MOM.WW.CBDD.Core.Collections;

View File

@@ -4,6 +4,7 @@ using System.Diagnostics;
using System.Linq.Expressions; using System.Linq.Expressions;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Core.CDC; using ZB.MOM.WW.CBDD.Core.CDC;
using ZB.MOM.WW.CBDD.Core.Compression; using ZB.MOM.WW.CBDD.Core.Compression;
using ZB.MOM.WW.CBDD.Core.Indexing; using ZB.MOM.WW.CBDD.Core.Indexing;

View File

@@ -1,4 +1,5 @@
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Bson.Schema; using ZB.MOM.WW.CBDD.Bson.Schema;
using ZB.MOM.WW.CBDD.Core.Indexing; using ZB.MOM.WW.CBDD.Core.Indexing;

View File

@@ -1,6 +1,7 @@
using System.Linq.Expressions; using System.Linq.Expressions;
using System.Reflection; using System.Reflection;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Core.Collections; using ZB.MOM.WW.CBDD.Core.Collections;
using static ZB.MOM.WW.CBDD.Core.Query.IndexOptimizer; using static ZB.MOM.WW.CBDD.Core.Query.IndexOptimizer;

View File

@@ -1,5 +1,6 @@
using System.Linq.Expressions; using System.Linq.Expressions;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
namespace ZB.MOM.WW.CBDD.Core.Query; namespace ZB.MOM.WW.CBDD.Core.Query;

View File

@@ -1,4 +1,5 @@
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Bson.Schema; using ZB.MOM.WW.CBDD.Bson.Schema;
namespace ZB.MOM.WW.CBDD.Core.Storage; namespace ZB.MOM.WW.CBDD.Core.Storage;

View File

@@ -1,4 +1,5 @@
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Core.Collections; using ZB.MOM.WW.CBDD.Core.Collections;
namespace ZB.MOM.WW.CBDD.Tests.Benchmark; namespace ZB.MOM.WW.CBDD.Tests.Benchmark;

View File

@@ -3,6 +3,7 @@ using System.Text.Json;
using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Configs; using BenchmarkDotNet.Configs;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
namespace ZB.MOM.WW.CBDD.Tests.Benchmark; namespace ZB.MOM.WW.CBDD.Tests.Benchmark;

View File

@@ -3,6 +3,7 @@ using System.IO.Compression;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using Serilog.Context; using Serilog.Context;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Core.Collections; using ZB.MOM.WW.CBDD.Core.Collections;
using ZB.MOM.WW.CBDD.Core.Compression; using ZB.MOM.WW.CBDD.Core.Compression;
using ZB.MOM.WW.CBDD.Core.Storage; using ZB.MOM.WW.CBDD.Core.Storage;

View File

@@ -1,6 +1,7 @@
using System.Reflection; using System.Reflection;
using System.Xml.Linq; using System.Xml.Linq;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Core; using ZB.MOM.WW.CBDD.Core;
using ZB.MOM.WW.CBDD.Core.Collections; using ZB.MOM.WW.CBDD.Core.Collections;
using ZB.MOM.WW.CBDD.Core.Indexing; using ZB.MOM.WW.CBDD.Core.Indexing;

View File

@@ -3,6 +3,7 @@ using System.Buffers.Binary;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Text; using System.Text;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
namespace ZB.MOM.WW.CBDD.Tests; namespace ZB.MOM.WW.CBDD.Tests;

View File

@@ -1,5 +1,6 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
namespace ZB.MOM.WW.CBDD.Tests; namespace ZB.MOM.WW.CBDD.Tests;

View File

@@ -1,4 +1,5 @@
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Shared; using ZB.MOM.WW.CBDD.Shared;
namespace ZB.MOM.WW.CBDD.Tests; namespace ZB.MOM.WW.CBDD.Tests;

View File

@@ -1,6 +1,7 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Shared; using ZB.MOM.WW.CBDD.Shared;
using ZB.MOM.WW.CBDD.Shared.TestDbContext_TestDbContext_Mappers; using ZB.MOM.WW.CBDD.Shared.TestDbContext_TestDbContext_Mappers;

View File

@@ -1,5 +1,6 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using ZB.MOM.WW.CBDD.Bson; using ZB.MOM.WW.CBDD.Bson;
using ZB.MOM.WW.CBDD.Bson.IO;
using ZB.MOM.WW.CBDD.Bson.Schema; using ZB.MOM.WW.CBDD.Bson.Schema;
using ZB.MOM.WW.CBDD.Core.Indexing; using ZB.MOM.WW.CBDD.Core.Indexing;
using ZB.MOM.WW.CBDD.Core.Storage; using ZB.MOM.WW.CBDD.Core.Storage;

View File

@@ -3,6 +3,7 @@ using ZB.MOM.WW.CBDD.Bson.Schema;
using ZB.MOM.WW.CBDD.Core.Collections; using ZB.MOM.WW.CBDD.Core.Collections;
using ZB.MOM.WW.CBDD.Core.Storage; using ZB.MOM.WW.CBDD.Core.Storage;
using System.Diagnostics.CodeAnalysis; using System.Diagnostics.CodeAnalysis;
using ZB.MOM.WW.CBDD.Bson.IO;
namespace ZB.MOM.WW.CBDD.Tests; namespace ZB.MOM.WW.CBDD.Tests;