From cb593e7f7d49427b74017ade8f6df5945dc43527 Mon Sep 17 00:00:00 2001 From: MoonsvnLyn <287222957+FirmaSpring@users.noreply.github.com> Date: Mon, 17 Aug 2026 17:29:00 +0800 Subject: [PATCH] docs: fix Samples repository path in README ## Problem The README samples link points at a path that no longer exists: https://github.com/SixLabors/Samples/tree/main/ImageSharp A GET with redirects returns 404. The samples repo now lives under `SixLabors.Samples.ImageSharp`. ## Solution Point the README at the current samples folder. ## Verification ``` curl -sL -o /dev/null -w "%{http_code} %{url_effective}" -A "Mozilla/5.0" \ "https://github.com/SixLabors/Samples/tree/main/ImageSharp" # 404 https://github.com/SixLabors/Samples/tree/main/ImageSharp curl -sL -o /dev/null -w "%{http_code} %{url_effective}" -A "Mozilla/5.0" \ "https://github.com/SixLabors/Samples/tree/main/SixLabors.Samples.ImageSharp" # 200 https://github.com/SixLabors/Samples/tree/main/SixLabors.Samples.ImageSharp ``` Co-authored-by: FirmamentalSpring <287222957+FirmaSpring@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d4375dbf5..17b8d409d0 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Support the efforts of the development of the Six Labors projects. ## Documentation - [Detailed documentation](https://sixlabors.github.io/docs/) for the ImageSharp API is available. This includes additional conceptual documentation to help you get started. -- Our [Samples Repository](https://github.com/SixLabors/Samples/tree/main/ImageSharp) is also available containing buildable code samples demonstrating common activities. +- Our [Samples Repository](https://github.com/SixLabors/Samples/tree/main/SixLabors.Samples.ImageSharp) is also available containing buildable code samples demonstrating common activities. ## Questions