ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.Logging/LoggingConstants.cs
Revision: 24
Committed: Wed May 9 08:59:52 2012 UTC (11 years ago) by william
File size: 649 byte(s)
Log Message:
logging support should be done now
logging includes:
* log to main application
* log to file

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Reflection;
6 using RomCheater.Logging;
7
8 namespace RomCheater
9 {
10 public static class LoggingConstants
11 {
12 #region Application Constants
13 public const string AppName = "RomCheater";
14 public static string AppLogFile = string.Format("{0}.log", AppName);
15 public static string AppVersion = Assembly.GetEntryAssembly().GetName().Version.ToString();
16 #if DEBUG
17 public const string AppBuild = "Debug";
18 #else
19 public const string AppBuild = "Release";
20 #endif
21 #endregion
22 }
23 }