Updated packages

This commit is contained in:
2023-06-26 19:07:27 +02:00
parent a592aabef1
commit 478aa15b4f
15 changed files with 92 additions and 103 deletions

View File

@@ -1,4 +1,4 @@
namespace EonaCat.Logger.Helpers
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.
@@ -6,7 +6,7 @@
public static class DllInfo
{
public const string NAME = "EonaCatLogger";
public const string VERSION = "1.0.0";
public const string VERSION = "1.1.0";
static DllInfo()
{
@@ -14,10 +14,10 @@
#if DEBUG
isDebug = true;
#endif
VERSION_NAME = isDebug ? "DEBUG" : "RELEASE";
VersionName = isDebug ? "DEBUG" : "RELEASE";
}
internal static string VERSION_NAME { get; }
internal static string VersionName { get; }
public static string ApplicationName { get; internal set; } = "EonaCatLogger";
}