From 16e0b0743d75d24b483d8ec80b26579047dd4f2c Mon Sep 17 00:00:00 2001 From: HueByte Date: Thu, 19 Feb 2026 09:55:52 +0100 Subject: [PATCH] fix: Update API documentation links and remove unnecessary file types from docfx configuration --- docs/api/index.md | 6 +++--- docs/docfx.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/api/index.md b/docs/api/index.md index ae3e487..a424fc4 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -4,14 +4,14 @@ Browse the generated API documentation for each EchoHub project. ## Projects -### [Client](client/EchoHub.Client.yml) +### Client Terminal.Gui v2 TUI application -- UI components, services, themes, and configuration. -### [Core](core/EchoHub.Core.Constants.yml) +### Core Shared library -- DTOs, models, constants, and the SignalR client contract. -### [Server](server/EchoHub.Server.Controllers.yml) +### Server ASP.NET Core server -- controllers, hubs, authentication, and data access. diff --git a/docs/docfx.json b/docs/docfx.json index 7e25997..54f39a1 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -41,19 +41,19 @@ { "src": "_api_meta/core", "dest": "api/core", - "files": ["*.yml", ".manifest"], + "files": ["*.yml"], "exclude": ["toc.yml"] }, { "src": "_api_meta/server", "dest": "api/server", - "files": ["*.yml", ".manifest"], + "files": ["*.yml"], "exclude": ["toc.yml"] }, { "src": "_api_meta/client", "dest": "api/client", - "files": ["*.yml", ".manifest"], + "files": ["*.yml"], "exclude": ["toc.yml"] } ],