Serilog.Formatting.Elasticsearch by: Michiel van Oudheusden, Martijn Laarman, Mogens Heller Grabe, Serilog Contributors
  • 62 total downloads
  • Latest version: 8.4.1
  • serilog elasticsearch logging event formatting
Package Description
Serilog.Sinks.Async by: Jezz Santos, Serilog Contributors
  • 102 total downloads
  • Latest version: 1.5.0
  • serilog async
Asynchronous sink wrapper for Serilog.
Serilog.Sinks.Console by: Serilog Contributors
  • 102 total downloads
  • Latest version: 4.1.0
  • serilog console terminal
A Serilog sink that writes log events to the console/terminal.
Serilog.Sinks.Debug by: Serilog Contributors
  • 950 total downloads
  • Latest version: 2.0.0
  • serilog debug
A Serilog sink that writes log events to the debug output window.
Serilog.Sinks.File by: Serilog Contributors
  • 1.363k total downloads
  • Latest version: 5.0.0
  • serilog file
Write Serilog events to text files in plain or JSON format.
Serilog.Sinks.PeriodicBatching by: Serilog Contributors
  • 2.255k total downloads
  • Latest version: 3.1.0
  • serilog batching timer
Buffer batches of log events to be flushed asynchronously.
Serilog.Sinks.RollingFile by: Serilog Contributors
  • 7 total downloads
  • Latest version: 3.3.0
  • serilog,file,io,rolling
The rolling file sink for Serilog - Simple .NET logging with fully-structured events
Serilog.Sinks.Slack by: mgibas, phnx47, TrapperHell
  • 989 total downloads
  • Latest version: 2.2.3
  • serilog sink slack
Serilog sink for Slack
SharpZipLib by: ICSharpCode
  • 95 total downloads
  • Latest version: 1.3.3
  • Compression Library Zip GZip BZip2 LZW Tar
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
  • 3 total downloads
  • Latest version: 3.1.4
  • Image Resize Crop Gif Jpg Jpeg Bitmap Pbm Png Tga Tiff WebP NetCore
A new, fully featured, fully managed, cross-platform, 2D graphics API for .NET
SkiaSharp by: Microsoft
  • 1 total downloads
  • Latest version: 2.88.8
  • xamarin graphics ios android linux windows uwp tvos watchos macos tizen cross-platform skiasharp
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.
SSH.NET by: Renci
  • 150 total downloads
  • Latest version: 2020.0.2
  • ssh scp sftp
SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism and with broad framework support.
SshNet.Security.Cryptography by: Renci
  • 150 total downloads
  • Latest version: 1.3.0
  • crypto
Cryptographic functions for .NET
StackExchange.Redis.StrongName by: Stack Exchange, Inc., marc.gravell
  • 46 total downloads
  • Latest version: 1.2.6
  • Async Redis Cache PubSub Messaging
High performance Redis client, incorporating both synchronous and asynchronous usage.
Swashbuckle.AspNetCore by: domaindrivendev
  • 1.136k total downloads
  • Latest version: 9.0.6
  • swagger documentation discovery help webapi aspnet aspnetcore
Swagger tools for documenting APIs built on ASP.NET Core
System.AppContext by: Microsoft
  • 1.349k 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
  • 2.943k 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.536k 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.423k 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
  • 452 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>