Files
EonaCat.Logger/EonaCat.Logger/DllInfo.cs
2022-09-19 09:07:51 +02:00

26 lines
775 B
C#

namespace EonaCat.Logger.Helpers
{
// 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.
public static class DllInfo
{
public const string NAME = "EonaCatLogger";
public const string VERSION = "1.0.0";
static DllInfo()
{
bool isDebug = false;
#if DEBUG
isDebug = true;
#endif
VERSION_NAME = isDebug ? "DEBUG" : "RELEASE";
}
internal static string VERSION_NAME { get; }
public static string ApplicationName { get; internal set; } = "EonaCatLogger";
public static ELogType LogLevel { get; internal set; } = ELogType.INFO;
}
}