1 parent d1ac9d1 commit 223ac46Copy full SHA for 223ac46
1 file changed
README.md
@@ -14,6 +14,22 @@ Targets `net10.0`.
14
| `ConcurrencyLimits.AspNetCore` | Request-pipeline middleware that returns 429 when the limit is reached. |
15
| `ConcurrencyLimits.Grpc` | gRPC server and client interceptors (unary calls). |
16
17
+## Install
18
+
19
+```bash
20
+dotnet add package ConcurrencyLimits # core algorithms and limiters
21
+dotnet add package ConcurrencyLimits.AspNetCore # ASP.NET Core middleware
22
+dotnet add package ConcurrencyLimits.Grpc # gRPC interceptors
23
+```
24
25
+Or via `PackageReference`:
26
27
+```xml
28
+<PackageReference Include="ConcurrencyLimits" Version="1.0.0" />
29
30
31
+The `AspNetCore` and `Grpc` packages depend on the core package, so installing either pulls it in transitively.
32
33
## Build and test
34
35
```bash
0 commit comments