From 2e0cac4c41a449779ce74574ef3a6861615c194c Mon Sep 17 00:00:00 2001 From: EonaCat Date: Thu, 8 Jan 2026 15:40:28 +0100 Subject: [PATCH] Updated --- EonaCat.Logger.LogServer.sln | 25 +++++++++++++++++++++++++ README.md | 10 +++++----- 2 files changed, 30 insertions(+), 5 deletions(-) create mode 100644 EonaCat.Logger.LogServer.sln diff --git a/EonaCat.Logger.LogServer.sln b/EonaCat.Logger.LogServer.sln new file mode 100644 index 0000000..651e7be --- /dev/null +++ b/EonaCat.Logger.LogServer.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 18 +VisualStudioVersion = 18.1.11312.151 d18.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EonaCat.Logger.LogServer", "EonaCat.Logger.LogServer\EonaCat.Logger.LogServer.csproj", "{6B67D219-C213-C1E9-77EF-C4C5AA4BE89F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6B67D219-C213-C1E9-77EF-C4C5AA4BE89F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6B67D219-C213-C1E9-77EF-C4C5AA4BE89F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6B67D219-C213-C1E9-77EF-C4C5AA4BE89F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6B67D219-C213-C1E9-77EF-C4C5AA4BE89F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {ED0781B9-E31C-48A7-A166-5C15A49064E7} + EndGlobalSection +EndGlobal diff --git a/README.md b/README.md index fc306f1..83fcaa3 100644 --- a/README.md +++ b/README.md @@ -33,12 +33,12 @@ VALUES ('MyApp', NEWID(), 1, GETUTCDATE()) #### Via NuGet Package Manager: ```bash -dotnet add package LogCentral.Client +dotnet add package EonaCat.Logger.LogClient ``` #### Via Package Manager Console: ```powershell -Install-Package LogCentral.Client +Install-Package EonaCat.Logger.LogClient ``` ## 📖 Usage Examples @@ -46,8 +46,8 @@ Install-Package LogCentral.Client ### Basic Setup ```csharp -using LogCentral.Client; -using LogCentral.Client.Models; +using EonaCat.Logger.LogClient; +using EonaCat.Logger.LogClient.Models; // Configure the client var options = new LogCentralOptions @@ -240,7 +240,7 @@ public class Program ### Windows Service / Console App ```csharp -using LogCentral.Client; +using EonaCat.Logger.LogClient; using Microsoft.Extensions.Hosting; public class Worker : BackgroundService