diff options
author | Rory& <root@rory.gay> | 2023-12-31 16:38:20 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2023-12-31 16:38:20 +0100 |
commit | 05289f61d7bd0650ef511cc92a8a657c493dce30 (patch) | |
tree | ed38ef598f9e37eaaf294b8864f361553869ee3c /ModAS.Server/Version.cs | |
parent | Add auth, start of commit script (diff) | |
download | ModAS-master.tar.xz |
Clean up swagger, clean up auth code HEAD github/master master
Diffstat (limited to 'ModAS.Server/Version.cs')
-rw-r--r-- | ModAS.Server/Version.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ModAS.Server/Version.cs b/ModAS.Server/Version.cs index 19aa81c..2f26dd7 100644 --- a/ModAS.Server/Version.cs +++ b/ModAS.Server/Version.cs @@ -1,5 +1,10 @@ namespace Modas.Server; +#pragma warning disable CS1591 public static class Version { - public const string Text = "master@v0+"; + public const string VersionString = "v0-master(+1) (c5b72e6)"; + public const string Branch = "master"; + public const string Tag = "v0"; + public const string Commit = "c5b72e6f002a637d542068be88d70936150c8818"; } +#pragma warning restore CS1591 |