Initial version
This commit is contained in:
26
EonaCat.Logger/DllInfo.cs
Normal file
26
EonaCat.Logger/DllInfo.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user