1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Reflection; |
6 |
using RomCheater.UserSettingsSupport; |
7 |
using RomCheater.Logging.Properties; |
8 |
|
9 |
namespace RomCheater.Logging |
10 |
{ |
11 |
public static class LoggingConstants |
12 |
{ |
13 |
//private static SettingSubscriber SettingsSubscriber; |
14 |
static LoggingConstants() |
15 |
{ |
16 |
//SettingsSubscriber = new SettingSubscriber(); |
17 |
//SettingsSubscriber.AddSubscriber(Settings.Default); |
18 |
//Logging.Properties.Settings.Default; |
19 |
} |
20 |
#region Application Constants |
21 |
public const string AppName = "RomCheater"; |
22 |
public static string AppLogFile = string.Format("{0}.log", AppName); |
23 |
public static string AppVersion = Assembly.GetEntryAssembly().GetName().Version.ToString(); |
24 |
#if DEBUG |
25 |
public const string AppBuild = "Debug"; |
26 |
#else |
27 |
public const string AppBuild = "Release"; |
28 |
#endif |
29 |
#endregion |
30 |
} |
31 |
} |