btcpayserver/BTCPayServer/GitCommitAttribute.cs
Nicolas Dorier 9f3fca8fd7
Show the git commit of the current build of BTCPay (#4320)
* Show the git commit of the current build of BTCPay

* Fix build

Co-authored-by: d11n <mail@dennisreimann.de>
2022-11-22 21:37:07 +09:00

19 lines
383 B
C#

using System;
namespace BTCPayServer
{
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
public sealed class GitCommitAttribute : Attribute
{
public string SHA
{
get;
}
public string ShortSHA => SHA.Substring(0, 9);
public GitCommitAttribute(string sha)
{
SHA = sha;
}
}
}