StreamJsonRpc by: Microsoft
  • 107 total downloads
  • Latest version: 1.5.68
  • visualstudio stream json rpc
A cross-platform .NET portable library that implements the JSON-RPC wire protocol and can use System.IO.Stream or WebSocket so you can use it with any transport.
StyleCop.Analyzers by: Sam Harwell et. al.
  • 259 total downloads
  • Latest version: 1.2.0-beta.556
  • StyleCop DotNetAnalyzers Roslyn Diagnostic Analyzer
An implementation of StyleCop's rules using Roslyn analyzers and code fixes
StyleCop.Analyzers.Unstable by: Sam Harwell et. al.
  • 70 total downloads
  • Latest version: 1.2.0.556
  • StyleCop DotNetAnalyzers Roslyn Diagnostic Analyzer
An implementation of StyleCop's rules using Roslyn analyzers and code fixes
Swashbuckle by: Richard Morris
  • 63 total downloads
  • Latest version: 5.6.0
  • Swagger SwaggerUi Documentation Discovery Help WebApi AspNet AspNetWebApi Docs WebHost IIS
Seamlessly adds a Swagger to WebApi projects!
Swashbuckle.AspNetCore by: domaindrivendev
  • 242 total downloads
  • Latest version: 7.0.0
  • swagger documentation discovery help webapi aspnet aspnetcore
Swagger tools for documenting APIs built on ASP.NET Core
Swashbuckle.AspNetCore.Annotations by: Swashbuckle.AspNetCore.Annotations
  • 3 total downloads
  • Latest version: 3.0.0
  • swagger documentation discovery help webapi aspnet aspnetcore annotations
Provides custom attributes that can be applied to controllers, actions and models to enrich the generated Swagger
Swashbuckle.AspNetCore.Filters by: Matt Frear
  • 28 total downloads
  • Latest version: 4.2.0
  • Swagger Swashbuckle
Some additional useful filters for Swashbuckle.AspNetCore. This package replaces Swashbuckle.AspNetCore.Examples.
Swashbuckle.AspNetCore.Swagger by: Swashbuckle.AspNetCore.Swagger
  • 31 total downloads
  • Latest version: 2.5.0
  • swagger documentation discovery help webapi aspnet aspnetcore
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
Swashbuckle.AspNetCore.SwaggerGen by: Swashbuckle.AspNetCore.SwaggerGen
  • 52 total downloads
  • Latest version: 3.0.0
  • swagger documentation discovery help webapi aspnet aspnetcore
Swagger Generator for API's built on ASP.NET Core
Swashbuckle.AspNetCore.SwaggerUI by: Swashbuckle.AspNetCore.SwaggerUI
  • 37 total downloads
  • Latest version: 3.0.0
  • swagger documentation discovery help webapi aspnet aspnetcore
Middleware to expose an embedded version of the swagger-ui 3 from an ASP.NET Core application
Swashbuckle.Core by: Richard Morris
  • 120 total downloads
  • Latest version: 5.6.0
  • Swagger SwaggerUi Documentation Discovery Help WebApi AspNet AspNetWebApi Docs SelfHost OWIN
Seamlessly adds a Swagger to WebApi projects!
SymantecConnector by: Florian Kowarsch
  • 2 total downloads
  • Latest version: 1.0.0.1
  • ICAP Symantec
Schnittstelle zu Symantec ICAP Service
System.AppContext by: Microsoft
  • 24 total downloads
  • Latest version: 4.0.0-beta-22816
Provides the System.AppContext class, which allows access to the BaseDirectory property and other application specific data. Commonly Used Types: System.AppContext
System.Binary by: Microsoft Corporation
  • 3 total downloads
  • Latest version: 0.1.0-alpha-001
  • .NET non-allocating binary readers and writers
Non-allocating ninary reader and writer
System.Buffers by: Microsoft
  • 269 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.Buffers.Primitives by: Microsoft Corporation
  • 3 total downloads
  • Latest version: 0.1.0-alpha-001
  • Slice Span Slices Spans
Slices of arrays and buffers
System.Collections by: Microsoft
  • 111 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
  • 60 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
  • 210 total downloads
  • Latest version: 6.0.0-preview.1.21102.12
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
  • 26 total downloads
  • Latest version: 4.0.0-beta-22816
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