Widow – Blame information for rev 19

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Reflection;
19 office 2 using System.Runtime.InteropServices;
1 office 3  
4 namespace Widow
5 {
6 public static class Constants
7 {
8 #region Static Fields and Constants
9  
10 public static readonly string AssemblyName = Assembly.GetEntryAssembly().GetName().Name;
11  
12 public static readonly string AssemblyVersion = Assembly.GetEntryAssembly().GetName().Version.ToString();
13  
19 office 14 public static readonly string AssemblyGuid =
15 ((GuidAttribute) Assembly.GetEntryAssembly().GetCustomAttributes(typeof(GuidAttribute), true)[0]).Value;
16  
1 office 17 #endregion
18 }
19 }