NexusLabs.Framework 0.1.4

dotnet add package NexusLabs.Framework --version 0.1.4
                    
NuGet\Install-Package NexusLabs.Framework -Version 0.1.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NexusLabs.Framework" Version="0.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NexusLabs.Framework" Version="0.1.4" />
                    
Directory.Packages.props
<PackageReference Include="NexusLabs.Framework" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NexusLabs.Framework --version 0.1.4
                    
#r "nuget: NexusLabs.Framework, 0.1.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package NexusLabs.Framework@0.1.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NexusLabs.Framework&version=0.1.4
                    
Install as a Cake Addin
#tool nuget:?package=NexusLabs.Framework&version=0.1.4
                    
Install as a Cake Tool

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on NexusLabs.Framework:

Package Downloads
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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.4 1,449 12/5/2025
0.1.3 421 11/30/2025
0.1.2 316 11/30/2025
0.1.1 170 11/30/2025
0.0.46 4,437 7/21/2024
0.0.45 1,780 5/24/2023
0.0.42 920 3/31/2023
0.0.41 342 3/31/2023
0.0.40 434 3/26/2023
0.0.39 361 3/26/2023
0.0.38 362 3/25/2023
0.0.37 361 3/24/2023
0.0.35 359 3/24/2023
0.0.34 770 1/29/2023
0.0.33 434 1/29/2023
0.0.31 450 1/27/2023
0.0.25 787 1/20/2023
0.0.23 1,336 8/11/2022
0.0.15 1,614 6/17/2022
0.0.14 873 2/2/2022
Loading failed

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