diff --git a/src/Consts.cs b/src/Consts.cs index 4d27c57..d3bd523 100644 --- a/src/Consts.cs +++ b/src/Consts.cs @@ -11,11 +11,11 @@ public const string DEBUG_ERROR_TAG = "ERROR"; public const string DEBUG_PASS_TAG = "PASS"; - public const string PRE_BEGIN_LAYER = nameof(PRE_BEGIN_LAYER); - public const string BEGIN_LAYER = nameof(BEGIN_LAYER); - public const string BASIC_LAYER = nameof(BASIC_LAYER); - public const string END_LAYER = nameof(END_LAYER); - public const string POST_END_LAYER = nameof(POST_END_LAYER); + public const string PRE_BEGIN_LAYER = AUTHOR + "." + FRAMEWORK_NAME + "." + nameof(PRE_BEGIN_LAYER); + public const string BEGIN_LAYER = AUTHOR + "." + FRAMEWORK_NAME + "." + nameof(BEGIN_LAYER); + public const string BASIC_LAYER = AUTHOR + "." + FRAMEWORK_NAME + "." + nameof(BASIC_LAYER); + public const string END_LAYER = AUTHOR + "." + FRAMEWORK_NAME + "." + nameof(END_LAYER); + public const string POST_END_LAYER = AUTHOR + "." + FRAMEWORK_NAME + "." + nameof(POST_END_LAYER); public const string META_HIDDEN_TAG = "HiddenInDebagging";