Serilog.Filters.Expressions
                    
                    by: Serilog Contributors
                
                - 12 total downloads
 - Latest version: 2.1.0
 
                    Expression-based event filtering for Serilog.
                
            
                    
                        Serilog.Sinks.Debug
                    
                    by: Serilog Contributors
                
                - 231 total downloads
 - Latest version: 2.0.0
 
                    A Serilog sink that writes log events to the debug output window.
                
            
                    
                        Serilog.Sinks.File
                    
                    by: Serilog Contributors
                
                - 223 total downloads
 - Latest version: 5.0.0
 
                    Write Serilog events to text files in plain or JSON format.
                
            
                    
                        Serilog.Sinks.PeriodicBatching
                    
                    by: Serilog Contributors
                
                - 243 total downloads
 - Latest version: 2.3.0
 
                    The periodic batching sink for Serilog
                
            
                    
                        SharpZipLib
                    
                    by: ICSharpCode
                
                - 236 total downloads
 - Latest version: 1.3.3
 
                    SharpZipLib (#ziplib, formerly NZipLib) is a compression library for Zip, GZip, BZip2, and Tar written entirely in C# for .NET. It is implemented as an assembly (installable in the GAC), and thus can easily be incorporated into other projects (in any .NET language)
                
            
                    
                        SixLabors.ImageSharp
                    
                    by: Six Labors and contributors
                
                - 323 total downloads
 - Latest version: 3.1.6
 
                    A new, fully featured, fully managed, cross-platform, 2D graphics API for .NET
                
            
                    
                        Superpower
                    
                    by: Datalust Superpower Contributors Sprache Contributors
                
                - 9 total downloads
 - Latest version: 2.3.0
 
                    A parser combinator library for C#
                
            
                    
                        Swashbuckle.AspNetCore
                    
                    by: domaindrivendev
                
                - 200 total downloads
 - Latest version: 6.6.2
 
                    Swagger tools for documenting APIs built on ASP.NET Core
                
            
                    
                        Syncfusion.Licensing
                    
                    by: Syncfusion Inc.
                
                - 27 total downloads
 - Latest version: 25.1.37
 
                    Syncfusion licensing is a .NET library for validating the registered Syncfusion license in an application at runtime. The Syncfusion license must be registered in an application when using the Syncfusion evaluation build or NuGet package assemblies.
Documentation: https://help.syncfusion.com/common/essential-studio/licensing/license-key?utm_source=nuget&utm_medium=listing
Support:
Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident?utm_source=nuget&utm_medium=listing
Forum: https://www.syncfusion.com/forums/general?utm_source=nuget&utm_medium=listing
This is a commercial product and requires a paid license for possession or use. Syncfusion�s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/?utm_source=nuget&utm_medium=listing). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products?utm_source=nuget&utm_medium=listing or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials?utm_source=nuget&utm_medium=listing).
� Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
                
            
                    
                        System.Buffers
                    
                    by: Microsoft
                
                - 1.631k total downloads
 - Latest version: 4.5.1
 
                    Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently.
Commonly Used Types:
System.Buffers.ArrayPool<T>
 
7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.Collections
                    
                    by: Microsoft
                
                - 1.073k total downloads
 - Latest version: 4.3.0
 
                    Provides classes that define generic collections, which allow developers to create strongly typed collections that provide better type safety and performance than non-generic strongly typed collections.
Commonly Used Types:
System.Collections.Generic.List<T>
System.Collections.Generic.Dictionary<TKey, TValue>
System.Collections.Generic.Queue<T>
System.Collections.Generic.Stack<T>
System.Collections.Generic.HashSet<T>
System.Collections.Generic.LinkedList<T>
System.Collections.Generic.EqualityComparer<T>
System.Collections.Generic.Comparer<T>
System.Collections.Generic.SortedDictionary<TKey, TValue>
 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.Collections.Concurrent
                    
                    by: Microsoft
                
                - 1.034k total downloads
 - Latest version: 4.3.0
 
                    Provides several thread-safe collection classes that should be used in place of the corresponding types in the System.Collections.NonGeneric and System.Collections packages whenever multiple threads are accessing the collection concurrently.
Commonly Used Types:
System.Collections.Concurrent.ConcurrentDictionary<TKey, TValue>
System.Collections.Concurrent.ConcurrentQueue<T>
System.Collections.Concurrent.ConcurrentBag<T>
System.Collections.Concurrent.BlockingCollection<T>
System.Collections.Concurrent.ConcurrentStack<T>
 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.Collections.Immutable
                    
                    by: Microsoft
                
                - 408 total downloads
 - Latest version: 5.0.0
 
                    This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity.
Commonly Used Types:
System.Collections.Immutable.ImmutableArray
System.Collections.Immutable.ImmutableArray<T>
System.Collections.Immutable.ImmutableDictionary
System.Collections.Immutable.ImmutableDictionary<TKey,TValue>
System.Collections.Immutable.ImmutableHashSet
System.Collections.Immutable.ImmutableHashSet<T>
System.Collections.Immutable.ImmutableList
System.Collections.Immutable.ImmutableList<T>
System.Collections.Immutable.ImmutableQueue
System.Collections.Immutable.ImmutableQueue<T>
System.Collections.Immutable.ImmutableSortedDictionary
System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>
System.Collections.Immutable.ImmutableSortedSet
System.Collections.Immutable.ImmutableSortedSet<T>
System.Collections.Immutable.ImmutableStack
System.Collections.Immutable.ImmutableStack<T>
                
            
                    
                        System.ComponentModel
                    
                    by: Microsoft
                
                - 577 total downloads
 - Latest version: 4.3.0
 
                    Provides interfaces for the editing and change tracking of objects used as data sources.
Commonly Used Types:
System.ComponentModel.CancelEventArgs
System.IServiceProvider
System.ComponentModel.IEditableObject
System.ComponentModel.IChangeTracking
System.ComponentModel.IRevertibleChangeTracking
 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.ComponentModel.Annotations
                    
                    by: Microsoft
                
                - 726 total downloads
 - Latest version: 5.0.0
 
                    Provides attributes that are used to define metadata for objects used as data sources.
Commonly Used Types:
System.ComponentModel.DataAnnotations.ValidationResult
System.ComponentModel.DataAnnotations.IValidatableObject
System.ComponentModel.DataAnnotations.ValidationAttribute
System.ComponentModel.DataAnnotations.RequiredAttribute
System.ComponentModel.DataAnnotations.StringLengthAttribute
System.ComponentModel.DataAnnotations.DisplayAttribute
System.ComponentModel.DataAnnotations.RegularExpressionAttribute
System.ComponentModel.DataAnnotations.DataTypeAttribute
System.ComponentModel.DataAnnotations.RangeAttribute
System.ComponentModel.DataAnnotations.KeyAttribute
 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.ComponentModel.Primitives
                    
                    by: Microsoft
                
                - 221 total downloads
 - Latest version: 4.3.0
 
                    Provides interfaces that are used to implement the run-time and design-time behavior of components.
Commonly Used Types:
System.ComponentModel.IComponent
System.ComponentModel.IContainer
System.ComponentModel.ISite
System.ComponentModel.ComponentCollection
 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.ComponentModel.TypeConverter
                    
                    by: Microsoft
                
                - 9 total downloads
 - Latest version: 4.3.0
 
                    Provides the System.ComponentModel.TypeConverter class, which represents a unified way of converting types of values to other types.
Commonly Used Types:
System.ComponentModel.TypeConverter
System.ComponentModel.TypeConverterAttribute
System.ComponentModel.PropertyDescriptor
System.ComponentModel.StringConverter
System.ComponentModel.ITypeDescriptorContext
System.ComponentModel.EnumConverter
System.ComponentModel.TypeDescriptor
System.ComponentModel.Int32Converter
System.ComponentModel.BooleanConverter
System.ComponentModel.DoubleConverter
 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.Data.Common
                    
                    by: Microsoft
                
                - 244 total downloads
 - Latest version: 4.3.0
 
                    Provides the base abstract classes, including System.Data.DbConnection and System.Data.DbCommand, for all data providers.
Commonly Used Types:
System.DBNull
System.Data.Common.DbConnection
System.Data.Common.DbException
System.Data.Common.DbParameter
System.Data.DbType
System.Data.Common.DbDataReader
System.Data.Common.DbCommand
System.Data.Common.DbTransaction
System.Data.Common.DbParameterCollection
System.Data.Common.DbProviderFactory
 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.Data.DataSetExtensions
                    
                    by: Microsoft
                
                - 26 total downloads
 - Latest version: 4.5.0
 
                    Provides extensions to form LINQ expressions and method queries against DataTable objects.
Commonly Used Types:
System.Data.DataRowComparer
System.Data.DataRowExtensions
System.Data.DataTableExtensions
System.Data.EnumerableRowCollection
System.Data.EnumerableRowCollectionExtensions
System.Data.OrderedEnumerableRowCollection
System.Data.TypedTableBase
System.Data.TypedTableBaseExtensions
 
30ab651fcb4354552bd4891619a0bdd81e0ebdbf 
When using NuGet 3.x this package requires at least version 3.4.