AspNetCore.SpaYarp
by: Bernd Hirschmann
- 8 total downloads
- Latest version: 2.0.1
An alternative approach to the new ASP.NET Core SPA templates in .NET 6. It uses YARP as proxy to forward requests to the SPA dev server.
AsyncEnumerator
by: sergiis dasync
- 7 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}");
}
}
Google.Protobuf
by: Google Inc.
- 6 total downloads
- Latest version: 3.30.0
C# runtime library for Protocol Buffers - Google's data interchange format.
Grpc.Core
by: The gRPC Authors
- 10 total downloads
- Latest version: 2.46.6
C# implementation of gRPC based on native gRPC C-core library.
Note that the Grpc.Core implementation of gRPC for C# is in maintenance mode and will be replaced by grpc-dotnet in the future.
See https://grpc.io/blog/grpc-csharp-future/ for details.
Hangfire.AspNetCore
by: Sergey Odinokov
- 9 total downloads
- Latest version: 1.8.18
ASP.NET Core support for Hangfire, a background job framework for .NET applications.
Hangfire.Core
by: Sergey Odinokov
- 6 total downloads
- Latest version: 1.8.18
An easy and reliable way to perform fire-and-forget, delayed and recurring, long-running, short-running, CPU or I/O intensive tasks in .NET applications. No Windows Service / Task Scheduler required.
Backed by Redis, SQL Server, SQL Azure or MSMQ. This is a .NET alternative to Sidekiq, Resque and Celery.
https://www.hangfire.io/
Hangfire.NetCore
by: Sergey Odinokov
- 8 total downloads
- Latest version: 1.8.18
.NET Core's Worker Service host support for Hangfire, a background job framework for .NET applications.
Hangfire.SqlServer
by: Sergey Odinokov
- 7 total downloads
- Latest version: 1.7.29
SQL Server 2008+ (including Express), SQL Server LocalDB and SQL Azure storage support for Hangfire (background job system for ASP.NET applications).
jQuery
by: John Resig
- 7 total downloads
- Latest version: 1.9.0
jQuery is a new kind of JavaScript Library.
jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.
NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.AspNetCore.Identity.UI
by: Microsoft
- 9 total downloads
- Latest version: 6.0.0
ASP.NET Core Identity UI is the default Razor Pages built-in UI for the ASP.NET Core Identity framework.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ae1a6cbe225b99c0bf38b7e31bf60cb653b73a52
Microsoft.AspNetCore.Razor.Design
by: Microsoft
- 8 total downloads
- Latest version: 2.3.0
Razor is a markup syntax for adding server-side logic to web pages. This package contains MSBuild support for Razor.
Microsoft.Bcl.Build
by: Microsoft
- 10 total downloads
- Latest version: 1.0.21
This package provides build infrastructure components so that projects referencing specific Microsoft packages can successfully build.
Do not directly reference this packages unless you receive a build warning that instructs you to add a reference.
Microsoft.CSharp
by: Microsoft
- 5 total downloads
- Latest version: 4.7.0
Provides support for compilation and code generation, including dynamic, using the C# language.
Commonly Used Types:
Microsoft.CSharp.RuntimeBinder.Binder
Microsoft.CSharp.RuntimeBinder.RuntimeBinderException
Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo
Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfoFlags
Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags
When using NuGet 3.x this package requires at least version 3.4.
Microsoft.Data.SqlClient.SNI.runtime
by: Microsoft
- 11 total downloads
- Latest version: 6.0.2
Internal implementation package not meant for direct consumption. Please do not reference directly.
When using NuGet 3.x this package requires at least version 3.4.
Microsoft.DotNet.PlatformAbstractions
by: Microsoft
- 7 total downloads
- Latest version: 5.0.0-preview.5.20278.1
Abstractions for making code that uses file system and environment testable.
Microsoft.EntityFrameworkCore.Analyzers
by: Microsoft
- 8 total downloads
- Latest version: 10.0.0-preview.2.25163.8
CSharp Analyzers for Entity Framework Core.
Microsoft.Extensions.OptionsModel
by: Microsoft
- 6 total downloads
- Latest version: 1.0.0-rc1-final
Provides a strongly typed way of specifying and accessing settings using dependency injection.
Microsoft.Identity.Client
by: Microsoft
- 5 total downloads
- Latest version: 4.22.0
This package contains the binaries of the Microsoft Authentication Library for .NET (MSAL.NET).
MSAL.NET makes it easy to obtain tokens from the Microsoft identity platform for developers (formally Azure AD v2.0) signing-in users with work & school accounts, Microsoft personal accounts and social identities Azure AD B2C. These tokens again access to Microsoft Cloud API and any other API secured by the Microsoft identity platform. This version supports adding authentication functionality to your .NET based client on Windows desktop (.NET 4.5+), UWP, .NET Core, Xamarin iOS and Xamarin Android.