Hush – Blame information for rev 2

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Reflection;
2  
3 namespace Hush
4 {
5 public static class Constants
6 {
2 office 7 public static readonly string MqttTopic = @"lobby";
1 office 8  
2 office 9 public static readonly string AssemblyName = Assembly.GetEntryAssembly().GetName().Name;
10  
11 public static readonly string AssemblyVersion = Assembly.GetEntryAssembly().GetName().Version.ToString();
1 office 12 }
13 }