From cc0a8de371039c5ea2af5a2cbd0d8d79ad4d4cc0 Mon Sep 17 00:00:00 2001 From: "dobby-yivi-agent[bot]" <275734547+dobby-yivi-agent[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 17:06:29 +0000 Subject: [PATCH 1/2] docs: correct SDK prerequisite to .NET 10.0+ in README The README listed '.NET 8.0+ SDK' as a prerequisite, but both src/E4A.PostGuard.csproj and tests/E4A.PostGuard.Tests.csproj multi-target net8.0;net10.0. Building the solution requires an SDK that supports the highest target (net10.0); an 8.0 SDK cannot compile the net10.0 target. CI installs both 8.0.x and 10.0.x SDKs accordingly. Fixes #12 Co-Authored-By: Claude Opus 4.8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a570435..035433d 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ See the [full API reference](https://docs.postguard.eu/repos/postguard-dotnet) f ### Prerequisites -- .NET 8.0+ SDK +- .NET 10.0+ SDK (the projects multi-target `net8.0` and `net10.0`, so the SDK must support the highest target, `net10.0`) - Rust toolchain ([rustup](https://rustup.rs/)) ### Build native library From e0bf855ba752e7c377377d25aa02d86b426b6d40 Mon Sep 17 00:00:00 2001 From: "dobby-yivi-agent[bot]" <275734547+dobby-yivi-agent[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 17:12:18 +0000 Subject: [PATCH 2/2] docs: drop justification parenthetical from SDK prerequisite Co-Authored-By: Claude Opus 4.8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 035433d..994b3f7 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ See the [full API reference](https://docs.postguard.eu/repos/postguard-dotnet) f ### Prerequisites -- .NET 10.0+ SDK (the projects multi-target `net8.0` and `net10.0`, so the SDK must support the highest target, `net10.0`) +- .NET 10.0+ SDK - Rust toolchain ([rustup](https://rustup.rs/)) ### Build native library