mirror of
https://git.tonybark.com/tonytins/CyberBits.git
synced 2026-05-12 05:23:34 -04:00
8 lines
273 B
C#
8 lines
273 B
C#
namespace CyberBits.Common;
|
|
|
|
public struct CBConsts
|
|
{
|
|
// Ignore VSCode if it complains about "ThisAssembly" not being found.
|
|
public const string VERSION =
|
|
$"{ThisAssembly.Git.SemVer.Major}.{ThisAssembly.Git.SemVer.Minor}.{ThisAssembly.Git.SemVer.Patch}";
|
|
}
|