AWSSDK.Core
by: Amazon Web Services
- 5.314k total downloads
- Latest version: 4.0.0-preview.4
The Amazon Web Services SDK for .NET - Core Runtime
Autofac.Extras.DynamicProxy
by: Autofac Contributors
- 58 total downloads
- Latest version: 4.5.0
Autofac extension for enabling AOP in conjunction with Castle.
Autofac.Configuration
by: Autofac Contributors
- 44 total downloads
- Latest version: 4.1.0
Configuration support for Autofac.
AsyncUsageAnalyzers
by: Sam Harwell et. al.
- 26 total downloads
- Latest version: 1.0.0-alpha003
A collection of analyzers related to best practices for writing asynchronous code.
AutoMapper.Extensions.Microsoft.DependencyInjection
by: Jimmy Bogard
- 35 total downloads
- Latest version: 2.0.1
AutoMapper extensions for ASP.NET Core
Avalonia.Xaml.Interactivity
by: wieslawsoltes
- 19 total downloads
- Latest version: 0.5.1
Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.
AutoMapper
by: Jimmy Bogard
- 85 total downloads
- Latest version: 7.0.1
A convention-based object-object mapper.
Avalonia
by: Avalonia Team
- 448 total downloads
- Latest version: 11.2.3
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
- 101 total downloads
- Latest version: 4.9.3
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
- 269 total downloads
- Latest version: 3.51.0
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
- 127 total downloads
- Latest version: 8.1.0
The abstractions library for API versioning.
Avalonia.Angle.Windows.Natives
by: Avalonia Team
- 73 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.
AWSSDK.S3
by: Amazon Web Services
- 845 total downloads
- Latest version: 4.0.0-preview.4
Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage.
Avalonia.Templates
by: Avalonia.Templates
- 273 total downloads
- Latest version: 11.2.1.1
Templates for creating Avalonia applications and libraries.
AsyncEnumerator
by: sergiis dasync
- 167 total downloads
- Latest version: 4.0.2
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 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
- 28 total downloads
- Latest version: 0.6.1
The Avalonia UI framework
AutoFixture
by: Mark Seemann
- 733 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.
Autofac.Extensions.DependencyInjection
by: Autofac Contributors
- 75 total downloads
- Latest version: 4.4.0
Autofac implementation of the interfaces in Microsoft.Extensions.DependencyInjection.Abstractions, the .NET Framework dependency injection abstraction.