NUnit3TestAdapter by: Charlie Poole, Terje Sandstrom
  • 8 total downloads
  • Latest version: 5.1.0
  • test visualstudio testadapter nunit nunit3 dotnet
The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core), versions .net framework 4.6.2 or higher, .net core 3.1, .net 5 or higher. Note that this package ONLY contains the adapter, not the NUnit framework. For VS 2017 and forward, you should add this package to every test project in your solution. (Earlier versions only require a single adapter package per solution.)
NunitXml.TestLogger by: spekt
  • 1 total downloads
  • Latest version: 6.1.0
Xml logger for NUnit v3 compliant xml report when test is running with "dotnet test" or "dotnet vstest".
OpenCvSharp4 by: shimat
  • 1 total downloads
  • Latest version: 4.11.0.20250507
  • Image Processing OpenCV Wrapper FFI opencvsharp
OpenCV wrapper for .NET. Since this package includes only core managed libraries, another package of native bindings for your OS is required (OpenCvSharp4.runtime.*).
OpenCvSharp4.runtime.win by: shimat
  • 1 total downloads
  • Latest version: 4.11.0.20250507
  • Image Processing OpenCV Wrapper FFI opencvsharp
Internal implementation package for OpenCvSharp to work on Windows except UWP.
OpenTK by: The Open Toolkit Team
  • 1 total downloads
  • Latest version: 3.3.0
  • OpenTK OpenGL OpenAL OpenCL C# F# VB .Net Mono Graphics Game Scientific Science 3D 2D Math Input Gamepad Joystick
The Open Toolkit is set of fast, low-level C# bindings for OpenGL, OpenGL ES and OpenAL. It runs on all major platforms and powers hundreds of apps, games and scientific research. OpenTK provides several utility libraries, including a math/linear algebra package, a windowing system, and input handling.
OpenTK.GLWpfControl by: varon NogginBops
  • 1 total downloads
  • Latest version: 4.2.3
A native WPF control for OpenTK 4.X.
OpenTK.Windowing.Common by: Team OpenTK
  • 1 total downloads
  • Latest version: 4.3.0
Common functionality for OpenTK.Windowing.* packages.
OptimizedPriorityQueue by: BlueRaja
  • 1 total downloads
  • Latest version: 5.0.0
  • C# priority-queue pathfinding optimized
A highly optimized Priority Queue for path-finding and related applications
Perfolizer by: Andrey Akinshin
  • 1 total downloads
  • Latest version: 0.3.17
  • analysis performance tool
Performance analysis toolkit
PlaylistsNET by: Tomasz Walecki
  • 1 total downloads
  • Latest version: 1.1.3
  • playlists m3u pls wpl zpl m3u8 playlist
Simple library for reading and writing playlist's files. Supported formats: m3u, pls, wpl, zpl.
PowerShellStandard.Library by: Microsoft
  • 1 total downloads
  • Latest version: 5.1.1
  • PowerShell, reference, net452, netstandard2, netstandard2.0
Contains the reference assemblies for PowerShell Standard 5
prometheus-net by: andrasm, qed-, lakario, sandersaares
  • 2 total downloads
  • Latest version: 5.0.2
  • metrics prometheus
.NET client library for the Prometheus monitoring and alerting system
prometheus-net.AspNetCore by: andrasm, qed-, lakario, sandersaares
  • 1 total downloads
  • Latest version: 5.0.2
  • metrics prometheus aspnetcore
ASP.NET Core middleware and stand-alone Kestrel server for exporting metrics to Prometheus
prometheus-net.DotNetRuntime by: James Luck
  • 1 total downloads
  • Latest version: 4.2.3
  • Prometheus prometheus-net IOnDemandCollector runtime metrics gc jit threadpool contention stats
Exposes .NET core runtime metrics (GC, JIT, lock contention, thread pool, exceptions) using the prometheus-net package.
Protobuf.Text by: Kerry Jiang and other contributors
  • 2 total downloads
  • Latest version: 0.6.0
  • C#,protobuf,text,text format
Text format support for google's protobuf C# library
python by: Python Software Foundation
  • 1 total downloads
  • Latest version: 3.12.7
  • python
Installs 64-bit Python for use in build scenarios.
Python.Runtime by: David William Manthey
  • 1 total downloads
  • Latest version: 2.7.9
Python 2.7.9 as a single, stand-alone executable with virtually all the standard libraries, plus pywin32-219 and psutil 2.1.3. Compiled with py2exe (see source below) on Windows XP. This should work on Windows XP and later. This works just like a full install of python, except you only need the one file.
pythonnet by: Python.Runtime
  • 1 total downloads
  • Latest version: 3.0.4
  • python interop dynamic dlr Mono pinvoke
Python and CLR (.NET and Mono) cross-platform language interop
RtspClientSharp by: Kirill Bogdanov, Artem Drobanov
  • 8 total downloads
  • Latest version: 2025.2.3-124042-59e2f7
  • rtsp, rtp, rtcp
C# RTSP Client for .NET - Supported transport protocols: TCP/HTTP/UDP - Supported media codecs: H.264/MJPEG/AAC/G711A/G711U/PCM/G726 - No external dependencies, pure C# code - Asynchronous nature with cancellation tokens support - Designed to be fast and scaleable - Low GC pressure during receive stage (when RTSP session is established); low amount of freezes under high load
RtspClientSharp.Source by: Artem Drobanov, Ilya Kuryshev
  • 8 total downloads
  • Latest version: 2025.2.3-124042-59e2f7
  • rtsp, rtp, rtcp
C# RTSP source based on RtspClientSharp - Supported transport protocols: TCP/UDP - Supported media codecs: H.264/MJPEG For h264 support install RtspClientSharp.Source.Native.Windows or RtspClientSharp.Source.Native.Linux, depending on the system you want to run the application on. To use this library: 1. Create an instance: > RtspClientSharpSource _source; > _source = new RtspClientSharpSource(); > _source.FrameReceived += OnFrameReceived; > _source.StatusChanged += OnStatusChanged; 2. Create functions to handle FrameReceived and StatusChanged events: > private void OnFrameReceived(object sender, (DateTime PcTime, DateTime NtpTime, TimeSpan Elapsed, RtpTransportProtocol Mode, RtspFrameDataWInfo frameWInfo) frame); > private void OnStatusChanged(object sender, string status); 3. Start the source (specify rtspAddress and RtpTransportProtocol according to your needs): > _source.Start(rtspAddress, RtpTransportProtocol.TCP); 4. Stop the source when it's not needed anymore: > _source.Stop(); 5. Don't forget to dispose it once you've done with it: > _source.Dispose();