Abp by: Halil İbrahim Kalkan
  • 3 total downloads
  • Latest version: 0.1.0
ASP.NET Boilerplate - A starting point for web applications with best practices and most popular tools.
Apache.NMS by: Apache ActiveMQ
  • 1.458k total downloads
  • Latest version: 1.8.1
  • apache activemq nms api net messaging
Apache NMS (.Net Standard Messaging Library): An abstract interface to Message Oriented Middleware (MOM) providers
Aspose.Pdf by: Aspose
  • 32 total downloads
  • Latest version: 10.0.0
  • Aspose.Pdf PDF XFA XPS TIFF PCL SVG HTML XML XSL-FO FDF XFDF PDF/A form Portfolio EPUB PSD to XLS DOC
Aspose.Pdf for .NET is a PDF document creation and manipulation component that enables your .NET applications to read, write and manipulate existing PDF documents without using Adobe Acrobat. It also allows you to create forms and manage form fields embedded in a PDF document. This component is written in managed C# and it allows developers to add PDF creation and manipulation functionality to their Microsoft .NET applications (WinForms, ASP.NET and .NET Compact Framework). Aspose.Pdf for .NET is affordable and offers an incredible wealth of features including PDF compression options; table creation and manipulation; support for graph objects; extensive hyperlink functionality; extended security controls; custom font handling; integration with data sources; add or remove bookmarks; create table of contents; add, update, delete attachments and annotations; import or export PDF form data; add, replace or remove text and images; split, concatenate, extract or inset pages; transform pages to image; print PDF documents and much more.
AsyncUsageAnalyzers by: Sam Harwell et. al.
  • 10 total downloads
  • Latest version: 1.0.0-alpha003
  • Async DotNetAnalyzers Roslyn Diagnostic Analyzer
A collection of analyzers related to best practices for writing asynchronous code.
AsyncBridge by: Daniel Grunwald Omer Mor Alex Davies
  • 2 total downloads
  • Latest version: 0.1.0
  • async bridge C# .NET40
Adds the new C#5 async features for .NET 4 and .NET 3.5 projects
Antlr4.Runtime.Standard by: Eric Vergnaud Terence Parr Sam Harwell
  • 2 total downloads
  • Latest version: 4.7.1.1
  • antlr parsing grammar
The .NET Core C# ANTLR 4 runtime from the ANTLR Organization
AntDesign by: James Yeung
  • 1.111k total downloads
  • Latest version: 0.19.0
  • blazor ant-design antd design razor components
🌈 A set of enterprise-class UI components based on Ant Design and Blazor WebAssembly.
Antlr by: Sam Harwell Terence Parr
  • 32 total downloads
  • Latest version: 3.5.0.2
ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages.
AutoMapper by: Headspring Jimmy Bogard
  • 10 total downloads
  • Latest version: 1.1.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 geared towards 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.
Avalonia by: Avalonia Team
  • 64 total downloads
  • Latest version: 11.1.0-beta2
  • avalonia avaloniaui mvvm rx reactive extensions android ios mac forms wpf net netstandard net461 uwp xamarin
Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.
Autofac by: Autofac Contributors
  • 7 total downloads
  • Latest version: 2.5.1.827
Base assemblies for the Autofac Inversion of Control Container
Apache.NMS.ActiveMQ by: Anthony S. Kilhoffer Stephen A. Bohlen
  • 40 total downloads
  • Latest version: 1.7.2
  • activemq messaging nms
The ActiveMQ NMS client is a .NET client that communicates with the ActiveMQ broker using its native Openwire protocol. This client supports advanced features such as Failover, Discovery, SSL, and Message Compression.
Avalonia.Angle.Windows.Natives by: Avalonia Team
  • 24 total downloads
  • Latest version: 2.1.22087.20231008
Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.
Antlr3.Runtime by: Sam Harwell Terence Parr
  • 17 total downloads
  • Latest version: 3.5.2-rc1
  • antlr antlr3 parsing
The runtime library for parsers generated by the C# target of ANTLR 3. This package supports projects targeting .NET 2.0 or newer, and built using Visual Studio 2008 or newer.
Aspose.Cells by: Aspose
  • 68 total downloads
  • Latest version: 22.10.0
  • Excel XLS XLSX XLSB CSV to PDF JPG PNG HTML ODS Numbers XLSM OOXML Spreadsheet Markdown XPS DOCX PPTX MHTML JSON SVG TIFF
A powerful and fast library written in C# for manipulating and converting Excel(XLS, XLSX,XLSB), ODS, CSV,JSON and HTML files.
apache-thrift-netcore by: The Apache Software Foundation
  • 24 total downloads
  • Latest version: 0.9.3.2
  • Thrift Serialization
For .Net Core - naive port, use with caution...
Aliyun.OSS.SDK by: 阿里云计算
  • 5 total downloads
  • Latest version: 2.13.0
  • aliyun oss sdk 阿里云 对象存储 云存储 云计算 .NET C#
阿里云OSS服务官方 .NET SDK
AsyncEnumerator by: Serge Semenov
  • 28 total downloads
  • Latest version: 1.4.2
  • IAsyncEnumerable IAsyncEnumerator ForEachAsync ParallelForEachAsync async await foreach parallel
Introduces IAsyncEnumerable, IAsyncEnumerator, ForEachAsync(), and ParallelForEachAsync() GitHub: https://github.com/tyrotoxin/AsyncEnumerable PROBLEM SPACE Helps to (a) create an element provider, where producing an element can take a lot of time due to dependency on other asynchronous events (e.g. wait handles, network streams), and (b) a consumer that processes those element as soon as they are ready without blocking the thread (the processing is scheduled on a worker thread instead). EXAMPLE using System.Collections.Async; static IAsyncEnumerable<int> ProduceAsyncNumbers(int start, int end) { return new AsyncEnumerable<int>(async yield => { // Just to show that ReturnAsync can be used multiple times await yield.ReturnAsync(start); for (int number = start + 1; number <= end; number++) await yield.ReturnAsync(number); // You can break the enumeration loop with the following call: yield.Break(); // This won't be executed due to the loop break above await yield.ReturnAsync(12345); }); } // Just to compare with synchronous version of enumerator static IEnumerable<int> ProduceNumbers(int start, int end) { yield return start; for (int number = start + 1; number <= end; number++) yield return number; yield break; yield return 12345; } static async Task ConsumeNumbersAsync() { var asyncEnumerableCollection = ProduceAsyncNumbers(start: 1, end: 10); await asyncEnumerableCollection.ForEachAsync(async number => { await Console.Out.WriteLineAsync($"{number}"); }); } // Just to compare with synchronous version of enumeration static void ConsumeNumbers() { // NOTE: IAsyncEnumerable is derived from IEnumerable, so you can use either var enumerableCollection = ProduceAsyncNumbers(start: 1, end: 10); //var enumerableCollection = ProduceNumbers(start: 1, end: 10); foreach (var number in enumerableCollection) { Console.Out.WriteLine($"{number}"); } }
Avalonia.BuildServices by: Avalonia.BuildServices
  • 6 total downloads
  • Latest version: 0.0.28
Package Description
AutoFixture by: Mark Seemann
  • 198 total downloads
  • Latest version: 3.51.0
AutoFixture makes it easier for developers to do Test-Driven Development by automating non-relevant Test Fixture Setup, allowing the Test Developer to focus on the essentials of each test case.