mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
16 lines
420 B
C#
16 lines
420 B
C#
namespace BililiveRecorder.WPF.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for LogPage.xaml
|
|
/// </summary>
|
|
public partial class LogPage
|
|
{
|
|
public LogPage()
|
|
{
|
|
this.InitializeComponent();
|
|
this.VersionTextBlock.Text = " " + GitVersionInformation.FullSemVer;
|
|
this.VersionTextBlock.ToolTip = GitVersionInformation.InformationalVersion;
|
|
}
|
|
}
|
|
}
|