Widow – Diff between revs 1 and 19

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