mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-18 00:11:27 +00:00
Move servers to LBPU.PL.Servers
This commit is contained in:
parent
545b5a0709
commit
b2ec7eae57
116 changed files with 173 additions and 162 deletions
|
@ -0,0 +1,25 @@
|
|||
@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>
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue