1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-19 16:33:36 +03:00

style: make a few things 'const'

This commit is contained in:
Octol1ttle 2024-03-24 15:34:08 +05:00
parent 9a44e324de
commit 70e7c43344
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF

View file

@ -2,15 +2,15 @@
public static class BuildInfo
{
public static string RepositoryUrl => "https://github.com/TeamOctolings/Octobot";
public const string RepositoryUrl = "https://github.com/TeamOctolings/Octobot";
public static string IssuesUrl => $"{RepositoryUrl}/issues";
public const string IssuesUrl = $"{RepositoryUrl}/issues";
public static string WikiUrl => $"{RepositoryUrl}/wiki";
public const string WikiUrl = $"{RepositoryUrl}/wiki";
private static string Commit => ThisAssembly.Git.Commit;
private const string Commit = ThisAssembly.Git.Commit;
private static string Branch => ThisAssembly.Git.Branch;
private const string Branch = ThisAssembly.Git.Branch;
public static bool IsDirty => ThisAssembly.Git.IsDirty;