This commit is contained in:
2024-04-25 22:05:17 +02:00
parent 44468ae920
commit 6c48b43a20
41 changed files with 2276 additions and 2515 deletions

View File

@@ -1,24 +1,22 @@
namespace EonaCat.Logger
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.
public static class DllInfo
{
// 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 const string NAME = "EonaCatLogger";
public const string VERSION = "1.1.0";
public static class DllInfo
static DllInfo()
{
public const string NAME = "EonaCatLogger";
public const string VERSION = "1.1.0";
static DllInfo()
{
bool isDebug = false;
var isDebug = false;
#if DEBUG
isDebug = true;
isDebug = true;
#endif
VersionName = isDebug ? "DEBUG" : "RELEASE";
}
internal static string VersionName { get; }
public static string ApplicationName { get; internal set; } = "EonaCatLogger";
VersionName = isDebug ? "DEBUG" : "RELEASE";
}
internal static string VersionName { get; }
public static string ApplicationName { get; internal set; } = "EonaCatLogger";
}