Nito.Cancellation
by: Stephen Cleary
- 624 total downloads
- Latest version: 1.2.0
Helper types for working with cancellation tokens and sources.
NJsonSchema.CodeGeneration.CSharp
by: Rico Suter
- 812 total downloads
- Latest version: 8.34.6331.29196
JSON Schema draft v4 reader, generator and validator for .NET
NodaTime
by: Jon Skeet
- 2.252k total downloads
- Latest version: 2.4.18
Noda Time is a date and time API acting as an alternative to the built-in DateTime/DateTimeOffset etc types built into the .NET framework.
Nito.Collections.Deque
by: Stephen Cleary
- 686 total downloads
- Latest version: 1.2.1
A double-ended queue.
Ninject
by: Ninject Project Contributors
- 1.128k total downloads
- Latest version: 3.3.6
Ninject is a lightning-fast, ultra-lightweight dependency injector for .NET applications.
NLog.Schema
by: Kim Christensen Julian Verdurmen
- 1.604k total downloads
- Latest version: 6.0.6
NLog Schema XSD-file for enabling Intellisense, when editing NLog.config XML file in Visual Studio.
The nuget-package will try to copy the XSD-file into the project-folder, so one can reference NLog.xsd from NLog.config:
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd">
</nlog>
If this nuget-package fails to place the XSD-file into the project-folder then one can download latest here: https://nlog-project.org/schemas/NLog.xsd
Alternative enable the Visual Studio option "Automatically download DTDs and schemas" and specify the complete URL:
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd http://www.nlog-project.org/schemas/NLog.xsd">
</nlog>
NJsonSchema.Yaml
by: Rico Suter
- 2.694k total downloads
- Latest version: 10.9.0
JSON Schema reader, generator and validator for .NET
NJsonSchema
by: Rico Suter
- 11.608k total downloads
- Latest version: 10.9.0
JSON Schema reader, generator and validator for .NET
NMemory
by: ZZZ Projects tamasflamich
- 692 total downloads
- Latest version: 3.1.6
NMemory is a lightweight non-persistent in-memory relational database engine that is purely written in C# and can be hosted by .NET applications. It supports traditional database features like indexes, foreign key relations, transaction handling and isolation, stored procedures, query optimization.
NLog.Database
by: Jarek Kowalski Kim Christensen Julian Verdurmen
- 1.348k total downloads
- Latest version: 6.0.3
NLog.Database includes DatabaseTarget for writing to any database with DbProvider support
NLog.Config
by: Kim Christensen Julian Verdurmen
- 1.462k total downloads
- Latest version: 4.7.15
NLog.config file to get started with configuring NLog.
This package is not mandatory to get started with NLog: the configuration file can
created manually (read specs here: https://github.com/NLog/NLog/wiki/Configuration-file)
or the configuration can be created programmatically. (read more here: https://github.com/NLog/NLog/wiki/Configuration-API)
Note: Unfortunately this package won't work well when using <PackageReference>
Advised to:
- download manually: https://raw.githubusercontent.com/NLog/NLog/v4.4/src/NuGet/NLog.Config/content/NLog.config
- set "Copy To Output Directory" to "Copy if newer"
NLog
by: Jarek Kowalski Kim Christensen Julian Verdurmen
- 2.073k total downloads
- Latest version: 6.0.6
NLog is a logging platform for .NET with rich log routing and management capabilities.
NLog supports traditional logging, structured logging and the combination of both.
Supported platforms:
- .NET 6, 7, 8, 9 and 10
- .NET Standard 2.0 and 2.1
- .NET Framework 3.5 - 4.8
- Xamarin Android + iOS (.NET Standard)
- Mono 4
For integrating NLog with Microsoft.Extensions.Logging, check: https://www.nuget.org/packages/NLog.Extensions.Logging
For using NLog with ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
NodaTime.Serialization.JsonNet
by: The Noda Time authors
- 330 total downloads
- Latest version: 2.3.0
Provides serialization support between Noda Time and Json.NET.
Nito.Disposables
by: Stephen Cleary
- 543 total downloads
- Latest version: 2.5.0
IDisposable and IAsyncDisposable helper types.
NJsonSchema.CodeGeneration.TypeScript
by: Rico Suter
- 987 total downloads
- Latest version: 8.34.6331.29196
JSON Schema draft v4 reader, generator and validator for .NET
NJsonSchema.CodeGeneration
by: Rico Suter
- 5.377k total downloads
- Latest version: 8.34.6331.29195
JSON Schema draft v4 reader, generator and validator for .NET
Nito.AsyncEx
by: Stephen Cleary
- 871 total downloads
- Latest version: 5.1.2
A helper library for the Task-Based Asynchronous Pattern (TAP).
NonBlocking
by: Vladimir Sadov
- 135 total downloads
- Latest version: 1.1.2
Implementation of a lock-free dictionary on .Net
Included types:
=== NonBlocking.ConcurrentDictionary
Lock-free, wait-free implementation of a dictionary.
- has the same API as System.Collections.Concurrent.ConcurrentDictionary.
- No locks are taken during any operation including Get, Add, Remove, internal resizes etc...
- While multiple threads accessing NonBlocking dictionary will help each other in operations such as table resizing, there is no dependency on such behavior. If any thread get unscheduled or delayed for whatever reason, other threads will be able to make progress independently.
- NonBlocking dictionary scales linearly with the number of active threads if hardware permits.
On most operations NonBlocking dictionary is faster than Concurrent, especially in write-heavy scenarios.
Core algorithms are based on NonBlockingHashMap, written and released to the public domain by Dr. Cliff Click. A good overview could be found here: https://www.youtube.com/watch?v=HJ-719EGIts
=== Counter32
=== Counter64
Low-overhead scalable counters.
Npgsql
by: Shay Rojansky Yoh Deadfall Austin Drenski Emil Lenngren Francisco Figueiredo Jr. Kenji Uno
- 1.065k total downloads
- Latest version: 4.0.17
Npgsql is the open source .NET data provider for PostgreSQL.
NLog.Targets.ElasticSearch
by: ReactiveMarkets
- 872 total downloads
- Latest version: 5.1.0
An NLog target that utilises the elasticsearch low level client.