Serilog.Exceptions
                    
                    by: Muhammad Rehan Saeed (RehanSaeed.com)
                
                - 230 total downloads
- Latest version: 8.4.0+build.694
                    Log exception details and custom properties that are not output in Exception.ToString().
                
            
                    
                        Serilog.Filters.Expressions
                    
                    by: Serilog Contributors
                
                - 11 total downloads
- Latest version: 2.1.0
                    Expression-based event filtering for Serilog.
                
            
                    
                        Serilog.Sinks.Debug
                    
                    by: Serilog Contributors
                
                - 226 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
                
                - 217 total downloads
- Latest version: 5.0.0
                    Write Serilog events to text files in plain or JSON format.
                
            
                    
                        Serilog.Sinks.PeriodicBatching
                    
                    by: Serilog Contributors
                
                - 237 total downloads
- Latest version: 2.3.0
                    The periodic batching sink for Serilog
                
            
                    
                        SixLabors.ImageSharp
                    
                    by: Six Labors and contributors
                
                - 314 total downloads
- Latest version: 3.1.6
                    A new, fully featured, fully managed, cross-platform, 2D graphics API for .NET
                
            
                    
                        SkiaSharp
                    
                    by: Microsoft
                
                - 52 total downloads
- Latest version: 2.88.8
                    SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.
It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
                
            
                    
                        SkiaSharp.HarfBuzz
                    
                    by: Microsoft
                
                - 31 total downloads
- Latest version: 2.88.6
                    This package adds text shaping support to SkiaSharp via HarfBuzz.
                
            
                    
                        SkiaSharp.NativeAssets.Linux
                    
                    by: Microsoft
                
                - 18 total downloads
- Latest version: 2.88.8
                    SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.
It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
                
            
                    
                        SkiaSharp.NativeAssets.Linux.NoDependencies
                    
                    by: Microsoft
                
                - 38 total downloads
- Latest version: 2.88.8
                    SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.
It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
This variation of the Linux native assets includes the build of libSkiaSharp.so that does not have any dependencies on third-party libraries.
The complete dependency list is:
 - libpthread.so.0
 - libdl.so.2
 - libm.so.6
 - libc.so.6
 - ld-linux-x86-64.so.2
The excluded dependencies are:
 - Fontconfig
                
            
                    
                        SkiaSharp.NativeAssets.macOS
                    
                    by: Microsoft
                
                - 55 total downloads
- Latest version: 2.88.8
                    SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.
It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
                
            
                    
                        SkiaSharp.NativeAssets.Win32
                    
                    by: Microsoft
                
                - 60 total downloads
- Latest version: 2.88.8
                    SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.
It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
                
            
                    
                        Superpower
                    
                    by: Datalust Superpower Contributors Sprache Contributors
                
                - 8 total downloads
- Latest version: 2.3.0
                    A parser combinator library for C#
                
            
                    
                        Swashbuckle.AspNetCore
                    
                    by: domaindrivendev
                
                - 196 total downloads
- Latest version: 6.6.2
                    Swagger tools for documenting APIs built on ASP.NET Core
                
            
                    
                        System.AppContext
                    
                    by: Microsoft
                
                - 869 total downloads
- Latest version: 4.3.0
                    Provides the System.AppContext class, which allows access to the BaseDirectory property and other application specific data.
Commonly Used Types:
System.AppContext
 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.Buffers
                    
                    by: Microsoft
                
                - 1.61k 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.Concurrent
                    
                    by: Microsoft
                
                - 1.023k 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
                
                - 402 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.Collections.NonGeneric
                    
                    by: Microsoft
                
                - 8 total downloads
- Latest version: 4.3.0
                    Provides classes that define older non-generic collections of objects, such as lists, queues, hash tables and dictionaries. Developers should prefer the generic collections in the System.Collections package.
Commonly Used Types:
System.Collections.ArrayList
System.Collections.Hashtable
System.Collections.CollectionBase
System.Collections.ReadOnlyCollectionBase
System.Collections.Stack
System.Collections.SortedList
System.Collections.DictionaryBase
System.Collections.Queue
System.Collections.Comparer
System.Collections.CaseInsensitiveComparer
 
When using NuGet 3.x this package requires at least version 3.4.
                
            
                    
                        System.Collections.Specialized
                    
                    by: Microsoft
                
                - 8 total downloads
- Latest version: 4.3.0
                    Provides older specialized non-generic collections; for example, a linked list dictionary, a bit vector, and collections that contain only strings.
Commonly Used Types:
System.Collections.Specialized.NameValueCollection
System.Collections.Specialized.NameObjectCollectionBase
System.Collections.Specialized.StringCollection
System.Collections.Specialized.IOrderedDictionary
System.Collections.Specialized.HybridDictionary
System.Collections.Specialized.OrderedDictionary
System.Collections.Specialized.ListDictionary
System.Collections.Specialized.StringDictionary
System.Collections.Specialized.BitVector32
 
When using NuGet 3.x this package requires at least version 3.4.
                
             
             
            