mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
9 lines
271 B
C#
9 lines
271 B
C#
namespace splitter;
|
|
|
|
public static class BuildInfo
|
|
{
|
|
public static string Version { get; } = ThisAssembly.Version;
|
|
public static string BuildNumber { get; } = ThisAssembly.BuildNumber;
|
|
public static string Commit { get; } = ThisAssembly.Commit;
|
|
}
|