Browse Source

Add version to title bar in debug builds

pull/1213/head
Siegfried Pammer 7 years ago
parent
commit
bed5642118
  1. 3
      ILSpy/MainWindow.xaml.cs

3
ILSpy/MainWindow.xaml.cs

@ -339,6 +339,9 @@ namespace ICSharpCode.ILSpy @@ -339,6 +339,9 @@ namespace ICSharpCode.ILSpy
}
Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new Action(() => OpenAssemblies(spySettings)));
#if DEBUG
this.Title = $"ILSpy {RevisionClass.FullVersion}";
#endif
}
void OpenAssemblies(ILSpySettings spySettings)

Loading…
Cancel
Save