NexusLabs.Framework
0.1.4
See the version list below for details.
dotnet add package NexusLabs.Framework --version 0.1.4
NuGet\Install-Package NexusLabs.Framework -Version 0.1.4
<PackageReference Include="NexusLabs.Framework" Version="0.1.4" />
<PackageVersion Include="NexusLabs.Framework" Version="0.1.4" />
<PackageReference Include="NexusLabs.Framework" />
paket add NexusLabs.Framework --version 0.1.4
#r "nuget: NexusLabs.Framework, 0.1.4"
#:package NexusLabs.Framework@0.1.4
#addin nuget:?package=NexusLabs.Framework&version=0.1.4
#tool nuget:?package=NexusLabs.Framework&version=0.1.4
This framework package is a basis of functionality that is often incorporated into Nexus Software Labs projects. Instead of recreating various versions of this functionality, this package aims to create reusable logic to save time and reduce errors.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
NuGet packages (5)
Showing the top 5 NuGet packages that depend on NexusLabs.Framework:
| Package | Downloads |
|---|---|
|
NexusLabs.Xunit.Assertions
xUnit.v3 assertion helpers that integrate with the NexusLabs.Framework result-pattern types (TriedEx<T>, TriedNullEx<T?>) and HTTP response shapes. Uses C# 14 extension(Assert) blocks to augment Xunit.Assert with NexusLabs-aware overloads. |
|
|
NexusLabs.Collections.Generic
This package offers extension methods for working with enumerables and collections as well as entirely new collections. This includes things like caching enumerables to trade off memory for reduced subsequent query time and 'frozen' collections that help articulate unchanging collections. |
|
|
NexusLabs.Data.Sql
Provider-agnostic decorators and helpers for the async ADO.NET interface shapes defined in NexusLabs.Framework. Includes connection lease (pool-size limiting with timeout-bounded acquisition and a ConnectionPoolExhaustedException), open-tracking diagnostics, structured logging command wrapper, and a predicate-based connection factory. |
|
|
NexusLabs.Testing
Framework-agnostic test helpers for Nexus Software Labs projects. Time: RegistrationObservingTimeProvider (a FakeTimeProvider that reports when the code under test arms a timer, so a test can advance the clock only after the registration it depends on has happened), a bounded AdvanceUntilAsync pump for when the expected registration count is unknown, and a Wait.UntilAsync condition wait that returns a result instead of throwing. |
|
|
NexusLabs.TUnit.Assertions
TUnit assertions for NexusLabs.Framework TriedEx and TriedNullEx results. Assert the complete result with Succeeded() or Failed(), receive the successful value or captured exception from await, and get bundled analyzer guidance for direct member assertions. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.2.10 | 78 | 9/18/2026 |
| 0.2.9 | 2,166 | 8/1/2026 |
| 0.2.8 | 950 | 7/28/2026 |
| 0.2.7 | 10,855 | 7/24/2026 |
| 0.2.6 | 9,109 | 7/11/2026 |
| 0.2.5 | 430 | 6/18/2026 |
| 0.2.4 | 1,278 | 6/17/2026 |
| 0.2.3 | 373 | 6/9/2026 |
| 0.2.2 | 577 | 5/30/2026 |
| 0.2.1 | 157 | 5/24/2026 |
| 0.2.0 | 118 | 5/23/2026 |
| 0.1.4 | 1,865 | 12/5/2025 |
| 0.1.3 | 456 | 11/30/2025 |
| 0.1.2 | 354 | 11/30/2025 |
| 0.1.1 | 212 | 11/30/2025 |
| 0.0.46 | 4,477 | 7/21/2024 |
| 0.0.45 | 1,804 | 5/24/2023 |
| 0.0.42 | 954 | 3/31/2023 |
| 0.0.41 | 371 | 3/31/2023 |
| 0.0.40 | 463 | 3/26/2023 |
0.1.4 - Fixes For StreamWithLength
- Added tests for StreamWithLength
- Fixed issue with StreamWithLength where setting Position to zero would be a no-op
- Fixed tests for NexusLabs.Framework.Tests to work with xUnitv3
0.1.3 - Major Update for net10
- Breaking compatibility with this -- we aren't going backwards.
- Dropped things from the library that are just core parts of dotnet now (i.e. IRandom and shared Random usage)
- Dropped dependency on Contracts library
- Added in IDbConnectionFactory
- Added in ITimeProvider
- Added in ExceptionHelper
- Added in StreamWithLength