-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Mark Lauter edited this page Jun 15, 2026
·
1 revision
Pool is distributed as the MSL.Pool NuGet package. This page gets it into your project; the Quickstart leases your first item.
From your project directory, run:
dotnet add package MSL.PoolOr add the reference to your .csproj directly:
<PackageReference Include="MSL.Pool" />Pool targets .NET 10. Set your project's framework to net10.0 or later:
<TargetFramework>net10.0</TargetFramework>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.