This commit is contained in:
2025-02-16 03:44:55 +01:00
parent 585652fdba
commit 9e324d8855
5 changed files with 19 additions and 7 deletions

View File

@@ -1,4 +1,6 @@
namespace EonaCat.Logger;
using EonaCat.Versioning.Helpers;
using System.Reflection;
namespace EonaCat.Logger;
// This file is part of the EonaCat project(s) which is released under the Apache License.
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
@@ -19,4 +21,6 @@ public static class DllInfo
internal static string VersionName { get; }
public static string ApplicationName { get; internal set; } = "EonaCatLogger";
public static string EonaCatVersion => VersionHelper.GetEonaCatVersion(Assembly.GetExecutingAssembly());
}