AWSSDK.Core
by: Amazon Web Services
- 5.318k total downloads
- Latest version: 4.0.0-preview.4
The Amazon Web Services SDK for .NET - Core Runtime
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.
AvalonEdit
by: AvalonEdit Contributors
- 103 total downloads
- Latest version: 6.1.3.50
AvalonEdit is the WPF-based text editor used in SharpDevelop. There are five builds of AvalonEdit included in this package: .NET Framework 4.5 and 4.0, .NET Core 3.1, .NET 5.0 for Windows, .NET 6.0 for Windows.
BootstrapBlazor.Analyzers
by: Argo Zhang(argo@163.com)
- 14 total downloads
- Latest version: 1.0.0
Analyzers
AutoMapper
by: Jimmy Bogard
- 81 total downloads
- Latest version: 6.2.0
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.
Avalonia
by: Avalonia Team
- 439 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
- 110 total downloads
- Latest version: 3.5.2
Base assemblies for the Autofac Inversion of Control Container
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).
BootstrapBlazor
by: Argo Zhang(argo@live.ca)
- 6.916k total downloads
- Latest version: 9.1.7
Bootstrap UI components for Blazor and Razor Components
BenchmarkDotNet
by: Andrey Akinshin Jon Skeet Matt Warren
- 226 total downloads
- Latest version: 0.9.7
Powerful .NET library for benchmarking
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.SecurityToken
by: Amazon Web Services
- 6.54k total downloads
- Latest version: 4.0.0-preview.4
The AWS Security Token Service (AWS STS) enables you to provide trusted users with temporary credentials that provide controlled access to your AWS resources.
AWSSDK.S3
by: Amazon Web Services
- 1.016k 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.
Bogus
by: Brian Chavez
- 316 total downloads
- Latest version: 35.6.0
A simple and sane data generator for populating objects that supports different locales. A delightful port of the famed faker.js and inspired by FluentValidation. Use Bogus to create UIs with fake data or seed databases. Get started by using Faker class or a DataSet directly.
AsyncEnumerator
by: Serge Semenov
- 73 total downloads
- Latest version: 1.4.2
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}");
}
}
Baidu-AI
by: Baidu
- 3.574k total downloads
- Latest version: 4.15.6
Official release of Baidu AI(http://ai.baidu.com) SDK, including Speech, Face, NLP, OCR, ImageClassify etc.
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
- 1.082k 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.
bootstrap
by: The Bootstrap Authors
- 545 total downloads
- Latest version: 5.3.3
The most popular front-end framework for developing responsive, mobile first projects on the web.