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:
parent
9a44e324de
commit
70e7c43344
1 changed files with 5 additions and 5 deletions
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
public static class BuildInfo
|
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;
|
public static bool IsDirty => ThisAssembly.Git.IsDirty;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue