AyCode.Core/AyCode.Core.Server
Loretta fbe142c6f3 Add detailed README.md files for all projects and folders
Added comprehensive README.md documentation to every project and subfolder in the solution. Each README describes the purpose, key files, structure, dependencies, and design patterns for its area. This improves codebase navigability and maintainability, and includes a maintenance note to keep docs in sync with future code changes.
2026-03-28 17:24:56 +01:00
..
Loggers Add detailed README.md files for all projects and folders 2026-03-28 17:24:56 +01:00
AyCode.Core.Server.csproj Integrate AcLogger with Microsoft.Extensions.Logging 2026-01-09 11:12:35 +01:00
README.md Add detailed README.md files for all projects and folders 2026-03-28 17:24:56 +01:00

README.md

AyCode.Core.Server

Server-side extension of AyCode.Core. Provides server-specific implementations that build on the shared core library.

Folder Structure

Folder Purpose
Loggers/ Server-side global logger singleton

Key Files

Loggers/

  • GlobalLogger.cs — Static singleton facade for server-side logging. Wraps AcGlobalLoggerBase (sealed, derives from AcLoggerBase). Provides static methods (Detail, Debug, Info, Warning, Suggest, Error, Write) with [CallerMemberName] support. Default category: "GLOBAL_LOGGER".

Dependencies

Dependency Purpose
AyCode.Core Core library (loggers, enums, serializers)
MessagePack MessagePack serialization
Newtonsoft.Json JSON serialization
Microsoft.Extensions.Logging.Abstractions Logging abstractions

LLM Maintenance: If you modify code in this folder, update this README to reflect the changes. If you notice the README content does not match the current code, automatically update the README to match the code.