Inertia – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Reflection;
2  
3 namespace Inertia
4 {
5 public static class Constants
6 {
7 #region Static Fields and Constants
8  
9 public static readonly string AssemblyName = Assembly.GetEntryAssembly().GetName().Name;
10  
11 public static readonly string AssemblyVersion = Assembly.GetEntryAssembly().GetName().Version.ToString();
12  
13 #endregion
14 }
15 }