mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-05-03 04:29:54 +03:00
style: move root namespace to TeamOctolings.Octobot
This commit is contained in:
parent
19fadead91
commit
3e6240f4b8
61 changed files with 421 additions and 441 deletions
18
TeamOctolings.Octobot/BuildInfo.cs
Normal file
18
TeamOctolings.Octobot/BuildInfo.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
namespace TeamOctolings.Octobot;
|
||||
|
||||
public static class BuildInfo
|
||||
{
|
||||
public const string RepositoryUrl = "https://github.com/TeamOctolings/Octobot";
|
||||
|
||||
public const string IssuesUrl = $"{RepositoryUrl}/issues";
|
||||
|
||||
public const string WikiUrl = $"{RepositoryUrl}/wiki";
|
||||
|
||||
private const string Commit = ThisAssembly.Git.Commit;
|
||||
|
||||
private const string Branch = ThisAssembly.Git.Branch;
|
||||
|
||||
public static bool IsDirty => ThisAssembly.Git.IsDirty;
|
||||
|
||||
public static string Version => IsDirty ? $"{Branch}-{Commit}-dirty" : $"{Branch}-{Commit}";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue