Aspose.PDF by: Aspose
  • 378 total downloads
  • Latest version: 24.11.0
  • Aspose.Pdf PDF XFA XPS TIFF PCL SVG HTML XML XSL-FO FDF XFDF PDF/A form Portfolio EPUB PSD to XLS PDF-to-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 insert pages; transform pages to image; print PDF documents and much more.
Aspose.Pdf by: Aspose
  • 8 total downloads
  • Latest version: 18.1.0
  • Aspose.Pdf PDF XFA XPS TIFF PCL SVG HTML XML XSL-FO FDF XFDF PDF/A form Portfolio EPUB PSD to XLS PDF-to-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.
Autofac.Extras.DynamicProxy by: Autofac Contributors
  • 14.669k total downloads
  • Latest version: 7.1.0
  • autofac di ioc dependencyinjection dynamicproxy
Autofac extension for enabling AOP in conjunction with Castle.
Autofac.Configuration by: Autofac Contributors
  • 58 total downloads
  • Latest version: 7.0.0
  • autofac di ioc dependencyinjection
Configuration support for Autofac.
AsyncUsageAnalyzers by: Sam Harwell et. al.
  • 27 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.
AvalonEdit by: AvalonEdit Contributors
  • 42 total downloads
  • Latest version: 6.1.1
  • WPF Text Editor SharpDevelop AvalonEdit
AvalonEdit is the WPF-based text editor used in SharpDevelop. There are three builds of AvalonEdit included in this package: .NET 4.0, 4.5 and .NET Core 3.0.
AsyncKeyedLock by: Mark Cilia Vincenti
  • 405 total downloads
  • Latest version: 7.1.4
  • async lock key keyed semaphore striped dictionary concurrentdictionary pooling duplicate synchronization
An asynchronous .NET Standard 2.0 library that allows you to lock based on a key (keyed semaphores), limiting concurrent threads sharing the same key to a specified number, with optional pooling for reducing memory allocations.
AutoMapper.Extensions.Microsoft.DependencyInjection by: Jimmy Bogard
  • 329 total downloads
  • Latest version: 12.0.1
AutoMapper extensions for ASP.NET Core
Avalonia.Controls.DataGrid by: Avalonia Team
  • 719 total downloads
  • Latest version: 11.2.3
  • 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.
AutoMapper by: Jimmy Bogard
  • 194 total downloads
  • Latest version: 12.0.1
A convention-based object-object mapper.
Avalonia.Controls.ColorPicker by: Avalonia Team
  • 315 total downloads
  • Latest version: 11.2.3
  • 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.
Avalonia by: Avalonia Team
  • 477 total downloads
  • Latest version: 11.2.3
  • 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
  • 14.751k total downloads
  • Latest version: 8.2.0
  • autofac di ioc dependencyinjection
Autofac is an IoC container for Microsoft .NET. It manages the dependencies between classes so that applications stay easy to change as they grow in size and complexity.
AutoFixture.Xunit2 by: Mark Seemann AutoFixture
  • 416 total downloads
  • Latest version: 5.0.0-preview0011
By leveraging the data theory feature of xUnit.net, this extension turns AutoFixture into a declarative framework for writing unit tests. In many ways it becomes a unit testing DSL (Domain Specific Language).
Asp.Versioning.Abstractions by: .NET Foundation and Contributors
  • 128 total downloads
  • Latest version: 8.1.0
  • Asp AspNet AspNetCore Versioning
The abstractions library for API versioning.
Avalonia.Angle.Windows.Natives by: Avalonia Team
  • 74 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.
AsyncEnumerator by: sergiis dasync
  • 169 total downloads
  • Latest version: 4.0.2
  • IAsyncEnumerable IAsyncEnumerator ForEachAsync ParallelForEachAsync async await foreach parallel async-streams linq charp .net
Introduces IAsyncEnumerable, IAsyncEnumerator, ForEachAsync(), and ParallelForEachAsync() GitHub: https://github.com/Dasync/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 Dasync.Collections; 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() { var enumerableCollection = ProduceNumbers(start: 1, end: 10); foreach (var number in enumerableCollection) { Console.Out.WriteLine($"{number}"); } }
Avalonia.BuildServices by: Avalonia Team
  • 22 total downloads
  • Latest version: 0.0.31
  • avalonia avaloniaui mvvm android ios mac forms wpf net netstandard
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.
Avalonia.Desktop by: Avalonia Team
  • 798 total downloads
  • Latest version: 11.2.2
  • 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.
AutoFixture by: Mark Seemann AutoFixture
  • 872 total downloads
  • Latest version: 5.0.0-preview0011
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.
Autofac.Extensions.DependencyInjection by: Autofac Contributors
  • 14.804k total downloads
  • Latest version: 10.0.0
  • autofac di ioc dependencyinjection aspnet aspnetcore
Autofac implementation of the interfaces in Microsoft.Extensions.DependencyInjection.Abstractions, the .NET Framework dependency injection abstraction.