mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
25 lines
No EOL
786 B
Text
25 lines
No EOL
786 B
Text
@page "/debug/version"
|
|
@using LBPUnion.ProjectLighthouse.Helpers
|
|
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.Debug.VersionInfoPage
|
|
|
|
@{
|
|
Layout = "Layouts/BaseLayout";
|
|
Model.Title = "Debug - Version Information";
|
|
Model.Description = VersionHelper.FullVersion;
|
|
}
|
|
|
|
<h2>Build specific information</h2>
|
|
<p><b>FullVersion</b>: @VersionHelper.FullVersion</p>
|
|
<br>
|
|
<p><b>Branch</b>: @VersionHelper.Branch</p>
|
|
<p><b>Build</b>: @VersionHelper.Build</p>
|
|
<p><b>CommitHash</b>: @VersionHelper.CommitHash</p>
|
|
<p><b>IsDirty</b>: @VersionHelper.IsDirty</p>
|
|
<p><b>CanCheckForUpdates</b>: @VersionHelper.CanCheckForUpdates</p>
|
|
<p><b>CommitsOutOfDate</b>: @VersionHelper.CommitsOutOfDate</p>
|
|
|
|
<h2>Remotes</h2>
|
|
@foreach (string remote in VersionHelper.Remotes)
|
|
{
|
|
<p>@remote</p>
|
|
} |