Updated
This commit is contained in:
@@ -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";
|
||||
}
|
||||
Reference in New Issue
Block a user