You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
573 B
12 lines
573 B
public static class DecompilerVersionInfo
|
|
{
|
|
public const string Major = "10";
|
|
public const string Minor = "0";
|
|
public const string Build = "0";
|
|
public const string Revision = "$INSERTREVISION$";
|
|
public const string VersionName = "preview1";
|
|
|
|
public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$";
|
|
public const string FullVersionWithShortCommitHash = FullVersion + "+$INSERTSHORTCOMMITHASH$";
|
|
public const string FullVersionWithCommitHash = FullVersion + "+$INSERTCOMMITHASH$";
|
|
}
|