Orleans.Clustering.Kubernetes by: Gutemberg Ribeiro
  • 1 total downloads
  • Latest version: 10.0.1
  • Orleans Cloud-Computing Actor-Model Actors Distributed-Systems Azure Kubernetes C# .NET
Microsoft Orleans clustering provider backed by Kubernetes
RBush by: viceroypenguin
  • 8 total downloads
  • Latest version: 3.2.0
  • .NET R-Tree Algorithm tree search spatial index
Spatial Index data structure; used to make it easier to find data points on a two dimensional plane.
Remotion.Linq by: rubicon IT GmbH
  • 4 total downloads
  • Latest version: 2.2.0-alpha-004
  • re-motion LINQ ExpressionTrees
re-linq Frontend: A foundation for parsing LINQ expression trees and generating queries in SQL or other languages. Key features: - Transforms expression trees into abstract syntax trees resemblying LINQ query expressions (from ... select syntax) - Simplifies many aspects of this tree (sub queries, transparent identifieres, pre-evaluation ...) - Provides basic infrastructure for backend development (e.g. SQL generation) - Provides a framework for user-defined query extensions and transformations
runtime.native.System by: Microsoft
  • 2 total downloads
  • Latest version: 4.0.0
Internal implementation package not meant for direct consumption. Please do not reference directly. When using NuGet 3.x this package requires at least version 3.4.
runtime.native.System.Data.SqlClient.sni by: Microsoft
  • 4 total downloads
  • Latest version: 4.6.0-rc1.19456.4
Internal implementation package not meant for direct consumption. Please do not reference directly. When using NuGet 3.x this package requires at least version 3.4.
runtime.native.System.Net.Http by: Microsoft
  • 1 total downloads
  • Latest version: 4.3.1
Internal implementation package not meant for direct consumption. Please do not reference directly. When using NuGet 3.x this package requires at least version 3.4.
runtime.native.System.Net.Security by: Microsoft
  • 1 total downloads
  • Latest version: 4.0.1-rc2-24027
Internal implementation package not meant for direct consumption. Please do not reference directly. \r\n TFS ID: 1599443, GitHub SHA: https://github.com/dotnet/corefx/tree/eede273a4dfabcea608621f5e1bbf8ad00584cfb
runtime.win-x86.runtime.native.System.Data.SqlClient.sni by: Microsoft
  • 1 total downloads
  • Latest version: 4.4.0-preview2-25312-01
Internal implementation package not meant for direct consumption. Please do not reference directly. 888a94932444d38e74c81005d4dbac77c6709e3f When using NuGet 3.x this package requires at least version 3.4.
runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk by: Microsoft
  • 3 total downloads
  • Latest version: 2.2.8
Internal implementation package not meant for direct consumption. Please do not reference directly. Provides the CoreCLR runtime and build tools to build and run Universal Windows applications using CoreCLR. 2c481f1d5b480b23fbc1359c38be9771913065ca When using NuGet 3.x this package requires at least version 3.4.
runtime.win7.System.Private.Uri by: Microsoft
  • 1 total downloads
  • Latest version: 4.3.2
Internal implementation package not meant for direct consumption. Please do not reference directly. Internal implementation package not meant for direct consumption. Please do not reference directly. Provides implementation of System.Uri. When using NuGet 3.x this package requires at least version 3.4.
SixLabors.Core by: Six Labors
  • 1 total downloads
  • Latest version: 1.0.0-beta0008
  • rectangle point size primitives
Low level primitives for use across Six Labors projects.
SixLabors.Fonts by: Six Labors and contributors
  • 2 total downloads
  • Latest version: 3.1.3
  • font truetype opentype woff woff2
A cross-platform library for loading and laying out fonts for processing and measuring; written in C#
SixLabors.ImageSharp.Web by: Six Labors and contributors
  • 1 total downloads
  • Latest version: 3.1.3
  • Image Middleware Resize Crop Gif Jpg Jpeg Bitmap Png WebP Tiff Core Cache ASP
ImageSharp Middleware for serving images via a url based API.
StackExchange.Redis by: Stack Exchange Inc. Marc Gravell Nick Craver
  • 19 total downloads
  • Latest version: 3.3.1
  • Async Redis Cache PubSub Messaging
High performance Redis client, incorporating both synchronous and asynchronous usage.
Swashbuckle.AspNetCore by: domaindrivendev
  • 5 total downloads
  • Latest version: 6.9.0
  • swagger documentation discovery help webapi aspnet aspnetcore
Swagger tools for documenting APIs built on ASP.NET Core
System.AppContext by: Microsoft
  • 1 total downloads
  • Latest version: 4.0.0-beta-22231
Provides the System.AppContext class, which allows access to the BaseDirectory property and other application specific data.
System.Buffers by: Microsoft
  • 8 total downloads
  • Latest version: 4.5.0-rc1
Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently. Commonly Used Types: System.Buffers.ArrayPool<T> 8f968b9e79c5721d78cc88e46fe57457fe9d490d When using NuGet 3.x this package requires at least version 3.4.
System.Collections by: Microsoft
  • 1 total downloads
  • Latest version: 4.0.10-beta-22231
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.
System.Collections.Concurrent by: Microsoft
  • 5 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
  • 27 total downloads
  • Latest version: 6.0.0-preview.5.21301.5
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>