add a bunch of stuff copied from Foxchat.NET
This commit is contained in:
parent
f4c0a40259
commit
6114f384a0
21 changed files with 1216 additions and 35 deletions
26
Foxnouns.Backend/BuildInfo.cs
Normal file
26
Foxnouns.Backend/BuildInfo.cs
Normal file
|
@ -0,0 +1,26 @@
|
|||
namespace Foxnouns.Backend;
|
||||
|
||||
public static class BuildInfo
|
||||
{
|
||||
public static string Hash { get; private set; } = "(unknown)";
|
||||
public static string Version { get; private set; } = "(unknown)";
|
||||
|
||||
public static async Task ReadBuildInfo()
|
||||
{
|
||||
await using var stream = typeof(BuildInfo).Assembly.GetManifestResourceStream("version");
|
||||
if (stream == null) return;
|
||||
|
||||
using var reader = new StreamReader(stream);
|
||||
var data = (await reader.ReadToEndAsync()).Trim().Split("\n");
|
||||
if (data.Length < 3) return;
|
||||
|
||||
Hash = data[0];
|
||||
var dirty = data[2] == "dirty";
|
||||
|
||||
var versionData = data[1].Split("-");
|
||||
if (versionData.Length < 3) return;
|
||||
Version = versionData[0];
|
||||
if (versionData[1] != "0" || dirty) Version += $"+{versionData[2]}";
|
||||
if (dirty) Version += ".dirty";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue