mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
* Migrate to GitInfo for embedding git information * Adjust gitignore to reflect new git system * Fix changes from broken merge * Remove vestigial code in VersionHelper --------- Co-authored-by: sudokoko <koko@drones.gay>
18 lines
No EOL
621 B
Text
18 lines
No EOL
621 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>RepositoryUrl</b>: @VersionHelper.RepositoryUrl</p> |