mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
11 lines
302 B
Plaintext
11 lines
302 B
Plaintext
namespace BililiveRecorder.WPF
|
|
{
|
|
internal class BuildInfo
|
|
{
|
|
internal const bool Appveyor = [APPVEYOR];
|
|
internal const string Version = @"[VERSION]";
|
|
internal const string HeadSha1 = @"[GIT_HASH]";
|
|
internal const string HeadShaShort = @"[GIT_HASH_S]";
|
|
}
|
|
}
|