Avalonia.Diagnostics by: Avalonia Team
  • 110 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.Mvc5 by: Autofac Contributors
  • 7 total downloads
  • Latest version: 4.0.2
ASP.NET MVC 5 Integration for Autofac
Autofac.Extras.DynamicProxy by: Autofac Contributors
  • 14.5k 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
  • 42 total downloads
  • Latest version: 5.0.0
  • autofac di ioc dependencyinjection
Configuration support for Autofac.
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.
AvalonEdit by: AvalonEdit Contributors
  • 10 total downloads
  • Latest version: 6.3.0.90
  • WPF Text Editor SharpDevelop AvalonEdit
AvalonEdit is the WPF-based text editor used in SharpDevelop.
AsyncKeyedLock by: Mark Cilia Vincenti
  • 101 total downloads
  • Latest version: 6.4.2
  • 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
  • 171 total downloads
  • Latest version: 8.1.1
AutoMapper extensions for ASP.NET Core
Avalonia.Controls.DataGrid by: Avalonia Team
  • 266 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.
AutoMapper by: Jimmy Bogard
  • 73 total downloads
  • Latest version: 8.0.0
A convention-based object-object mapper.
Avalonia.Controls.ColorPicker 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.
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
  • 14.509k total downloads
  • Latest version: 8.0.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
  • 13 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).
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.
AsyncEnumerator by: sergiis dasync
  • 58 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.BuildServices
  • 7 total downloads
  • Latest version: 0.0.28
Package Description
Avalonia.Desktop by: Avalonia Team
  • 269 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.
AutoFixture by: Mark Seemann AutoFixture
  • 285 total downloads
  • Latest version: 4.18.1
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.556k total downloads
  • Latest version: 9.0.0
  • autofac di ioc dependencyinjection aspnet aspnetcore
Autofac implementation of the interfaces in Microsoft.Extensions.DependencyInjection.Abstractions, the .NET Framework dependency injection abstraction.