diff --git a/src/BuildInfo.cs b/src/BuildInfo.cs
index a6620b2..2eb6059 100644
--- a/src/BuildInfo.cs
+++ b/src/BuildInfo.cs
@@ -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;