mirror of https://github.com/icsharpcode/ILSpy.git
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
566 B
12 lines
566 B
public static class DecompilerVersionInfo |
|
{ |
|
public const string Major = "9"; |
|
public const string Minor = "0"; |
|
public const string Build = "0"; |
|
public const string Revision = "$INSERTREVISION$"; |
|
public const string VersionName = null; |
|
|
|
public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$"; |
|
public const string FullVersionWithShortCommitHash = FullVersion + "+$INSERTSHORTCOMMITHASH$"; |
|
public const string FullVersionWithCommitHash = FullVersion + "+$INSERTCOMMITHASH$"; |
|
}
|
|
|