Skip to content

Installation

Mark Lauter edited this page Jun 15, 2026 · 1 revision

Installation

Pool is distributed as the MSL.Pool NuGet package. This page gets it into your project; the Quickstart leases your first item.

Add the package

From your project directory, run:

dotnet add package MSL.Pool

Or add the reference to your .csproj directly:

<PackageReference Include="MSL.Pool" />

Target framework

Pool targets .NET 10. Set your project's framework to net10.0 or later:

<TargetFramework>net10.0</TargetFramework>

Confirm the reference

The public types live in the Pool namespace. Add the using and the compiler resolves IPool<TPoolItem>:

using Pool;

If that compiles, the package is wired in. Continue to the Quickstart to register a pool and lease an item.

Clone this wiki locally