AdamE.Firebase.iOS.ABTesting by: Microsoft, Adam Essenmacher
  • 0 total downloads
  • Latest version: 10.29.0
C# bindings for Firebase APIs A/B Testing iOS Library
AdamE.Firebase.iOS.Analytics by: Microsoft, Adam Essenmacher
  • 2 total downloads
  • Latest version: 12.8.0
C# bindings for Firebase APIs Analytics iOS Library
AdamE.Firebase.iOS.Auth by: Microsoft, Adam Essenmacher
  • 1 total downloads
  • Latest version: 10.29.0.3
C# bindings for Firebase APIs Auth iOS Library
AdamE.Firebase.iOS.Core by: Microsoft, Adam Essenmacher
  • 5 total downloads
  • Latest version: 12.10.0
C# bindings for Firebase APIs Core iOS Library
AdamE.Firebase.iOS.Installations by: Microsoft, Adam Essenmacher
  • 0 total downloads
  • Latest version: 10.28.0
C# bindings for Firebase APIs Installations iOS Library
AdamE.Firebase.iOS.Storage by: Microsoft, Adam Essenmacher
  • 0 total downloads
  • Latest version: 11.6.0
C# bindings for Firebase APIs Storage iOS Library
AdamE.Google.iOS.GoogleAppMeasurement by: Microsoft, Adam Essenmacher
  • 3 total downloads
  • Latest version: 12.10.0
GoogleAppMeasurement packed for .NET for iOS
AjaxControlToolkit by: Microsoft
  • 1 total downloads
  • Latest version: 1.0.1
AJAX Control Toolkit
AngleSharp by: AngleSharp
  • 1 total downloads
  • Latest version: 1.4.1-beta.523
  • html html5 css css3 xml dom dom4 parser engine hypertext markup language query selector attributes linq angle bracket web internet text headless browser
AngleSharp is the ultimate angle brackets parser library. It parses HTML5, CSS3, and XML to construct a DOM based on the official W3C specification.
AutoMapper by: Jimmy Bogard
  • 3 total downloads
  • Latest version: 6.0.2
A convention-based object-object mapper. AutoMapper uses a fluent configuration API to define an object-object mapping strategy. AutoMapper uses a convention-based matching algorithm to match up source to destination values. Currently, AutoMapper is designed for model projection scenarios to flatten complex object models to DTOs and other simple objects, whose design is better suited for serialization, communication, messaging, or simply an anti-corruption layer between the domain and application layer.
AWSSDK.Core by: Amazon Web Services
  • 4 total downloads
  • Latest version: 3.7.400.28
  • AWS Amazon cloud aws-sdk-v3
The Amazon Web Services SDK for .NET - Core Runtime
AWSSDK.SimpleEmail by: Amazon Web Services
  • 9 total downloads
  • Latest version: 4.0.2.2
  • AWS Amazon cloud SimpleEmailService aws-sdk-v4 SES
Amazon SES is an outbound-only email-sending service that provides an easy, cost-effective way for you to send email.
Azure.Core by: Microsoft
  • 0 total downloads
  • Latest version: 1.45.0
  • Microsoft Azure Client Pipeline
This is the implementation of the Azure Client Pipeline
Azure.Data.Tables by: Microsoft
  • 2 total downloads
  • Latest version: 12.8.3
  • Microsoft Azure Tables Microsoft Azure Tables Table windowsazureofficial azureofficial
This client library enables working with the Microsoft Azure Table service
Azure.Identity by: Microsoft
  • 1 total downloads
  • Latest version: 1.5.0-beta.4
  • Microsoft Azure Identity windowsazureofficial azureofficial
This is the implementation of the Azure SDK Client Library for Azure Identity
Azure.Storage.Blobs by: Microsoft
  • 1 total downloads
  • Latest version: 12.20.0-beta.2
  • Microsoft Azure Storage Blobs Microsoft Azure Blobs Blob Storage StorageScalable windowsazureofficial azureofficial
This client library enables working with the Microsoft Azure Storage Blob service for storing binary and text data. For this release see notes - https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Blobs/README.md and https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Blobs/CHANGELOG.md in addition to the breaking changes https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Blobs/BreakingChanges.txt Microsoft Azure Storage quickstarts and tutorials - https://docs.microsoft.com/en-us/azure/storage/ Microsoft Azure Storage REST API Reference - https://docs.microsoft.com/en-us/rest/api/storageservices/ REST API Reference for Blob Service - https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api
Azure.Storage.Common by: Microsoft
  • 1 total downloads
  • Latest version: 12.25.0-beta.1
  • Microsoft Azure Storage Common, Microsoft, Azure, StorageScalable, azureofficial
This client library enables working with the Microsoft Azure Storage services which include the blob and file services for storing binary and text data, and the queue service for storing messages that may be accessed by a client. For this release see notes - https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Common/README.md and https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Common/CHANGELOG.md in addition to the breaking changes https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Common/BreakingChanges.txt Microsoft Azure Storage quickstarts and tutorials - https://docs.microsoft.com/en-us/azure/storage/ Microsoft Azure Storage REST API Reference - https://docs.microsoft.com/en-us/rest/api/storageservices/
BlazorStrap by: Chanan Braunstein, John Bomhold
  • 1 total downloads
  • Latest version: 5.1.100
  • blazor bootstrap bootstrap5
A bootstrap 5 component library for Blazor
CommandLineParser by: Giacomo Stelluti Scala
  • 1 total downloads
  • Latest version: 2.0.275-beta
  • command line argument option parser parsing library syntax shell
Terse syntax C# command line parser for .NET with F# support. The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks.
CommunityToolkit.HighPerformance by: Microsoft
  • 1 total downloads
  • Latest version: 8.2.2
  • dotnet Community Toolkit .NET Parallel Performance Unsafe Span Memory String StringPool Array Stream Buffer Extensions Helpers
This package includes high performance .NET helpers such as: - Memory2D<T> and Span2D<T>: two types providing fast and allocation-free abstraction over 2D memory areas. - ArrayPoolBufferWriter<T>: an IBufferWriter<T> implementation using pooled arrays, which also supports IMemoryOwner<T>. - MemoryBufferWriter<T>: an IBufferWriter<T>: implementation that can wrap external Memory<T>: instances. - MemoryOwner<T>: an IMemoryOwner<T> implementation with an embedded length and a fast Span<T> accessor. - SpanOwner<T>: a stack-only type with the ability to rent a buffer of a specified length and getting a Span<T> from it. - StringPool: a configurable pool for string instances that be used to minimize allocations when creating multiple strings from char buffers. - String, array, Memory<T>, Span<T> extensions and more, all focused on high performance. - HashCode<T>: a SIMD-enabled extension of HashCode to quickly process sequences of values. - BitHelper: a class with helper methods to perform bit operations on numeric types. - ParallelHelper: helpers to work with parallel code in a highly optimized manner. - Box<T>: a type mapping boxed value types and exposing some utility and high performance methods. - Ref<T>: a stack-only struct that can store a reference to a value of a specified type. - NullableRef<T>: a stack-only struct similar to Ref<T>, which also supports nullable references.