Telegram.Bot by: RoundRobin Poulad tuscen
  • 2 total downloads
  • Latest version: 16.0.2
  • Telegram Bot Api Payment Inline Games
The Bot API is an HTTP-based interface created for developers keen on building bots for Telegram.
Microsoft.NETCore.Jit by: Microsoft
  • 1 total downloads
  • Latest version: 1.1.1
The .NET JIT compiler. When using NuGet 3.x this package requires at least version 3.4.
Microsoft.NETCore.Platforms by: Microsoft
  • 9 total downloads
  • Latest version: 5.0.0
Provides runtime information required to resolve target framework, platform, and runtime specific implementations of .NETCore packages. When using NuGet 3.x this package requires at least version 3.4.
Microsoft.AspNet.WebApi.WebHost by: Microsoft
  • 1 total downloads
  • Latest version: 5.3.0
  • Microsoft AspNet WebApi AspNetWebApi WebHost
This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework.
Microsoft.AspNetCore.App.Ref by: Microsoft
  • 5 total downloads
  • Latest version: 9.0.13
  • aspnetcore targeting-pack
Provides a default set of APIs for building an ASP.NET Core application. Contains reference assemblies, documentation, and other design-time assets. This package is an internal implementation of the .NET Core SDK and is not meant to be used as a normal PackageReference. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/087328de5f1e0067be48d87295ae8d92064a1535
Twilio by: Twilio
  • 4 total downloads
  • Latest version: 6.14.1
  • REST SMS voice telephony phone twilio twiml video wireless api
Twilio REST API helper library
Swashbuckle.AspNetCore by: domaindrivendev
  • 4 total downloads
  • Latest version: 6.6.2
  • swagger documentation discovery help webapi aspnet aspnetcore
Swagger tools for documenting APIs built on ASP.NET Core
Microsoft.NETCore.Runtime.CoreCLR by: Microsoft
  • 1 total downloads
  • Latest version: 1.1.1
The .NET Core runtime, called CoreCLR, and the base library, called mscorlib. It includes the garbage collector, JIT compiler, base .NET data types and many low-level classes. When using NuGet 3.x this package requires at least version 3.4.
Microsoft.NETCore.Targets by: Microsoft
  • 3 total downloads
  • Latest version: 1.1.3
Provides supporting infrastructure for portable projects: support identifiers that define framework and runtime for support targets and packages that reference the minimum supported package versions when targeting these. When using NuGet 3.x this package requires at least version 3.4.
Microsoft.NETCore.Windows.ApiSets by: Microsoft
  • 1 total downloads
  • Latest version: 1.0.1
Windows API set dlls for use in operating systems that do not include them. TFS ID: 1612576, GitHub SHA: https://github.com/dotnet/corefx/tree/f47c814b003d17da52940739e227f04e52b10279 When using NuGet 3.x this package requires at least version 3.4.
Z.Expressions.Eval by: ZZZ Projects
  • 1 total downloads
  • Latest version: 4.0.29
  • C# Eval Expression Function Evaluator Compile Compiler Execute Roslyn Scripting
Evaluate, Compile and Execute C# code at runtime. Support: Dynamic LINQ, Extension Method, Expando Object, and more! Online Example: https://dotnetfiddle.net/COq6FC Include free and prime features.
VkNet by: inyutin_maxim azhidkov
  • 1 total downloads
  • Latest version: 1.63.0
  • vk vk api vknet vkontakte api
Реализация ВКонтакте API для .NET. Список методов см. https://vknet.github.io/vk/
AsyncEnumerator by: sergiis Dasync
  • 1 total downloads
  • Latest version: 2.2.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 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() { var enumerableCollection = ProduceNumbers(start: 1, end: 10); foreach (var number in enumerableCollection) { Console.Out.WriteLine($"{number}"); } }