2015-05-14 22:35:07 +03:00
|
|
|
//Generated from GlobalAssemblyInfo.cs.tmpl && Version
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
|
|
|
|
|
[assembly: AssemblyDelaySign(false)]
|
|
|
|
|
[assembly: AssemblyCompany("")]
|
|
|
|
|
[assembly: AssemblyProduct("PascalABC.NET Compiler")]
|
2020-01-04 12:19:36 +03:00
|
|
|
[assembly: AssemblyCopyright("Copyright © 2005-2019 by Ivan Bondarev, Stanislav Mihalkovich")]
|
2015-05-14 22:35:07 +03:00
|
|
|
[assembly: AssemblyTrademark("")]
|
|
|
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
|
[assembly: AssemblyVersion(RevisionClass.FullVersion)]
|
|
|
|
|
|
|
|
|
|
internal static class RevisionClass
|
|
|
|
|
{
|
2019-04-26 20:10:05 +03:00
|
|
|
public const string Major = "3";
|
2020-08-26 08:53:11 +03:00
|
|
|
public const string Minor = "7";
|
2020-09-05 20:39:31 +03:00
|
|
|
public const string Build = "1";
|
2021-01-01 17:42:02 +03:00
|
|
|
public const string Revision = "2777";
|
2015-05-14 22:35:07 +03:00
|
|
|
|
|
|
|
|
public const string MainVersion = Major + "." + Minor;
|
|
|
|
|
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
|
|
|
|
}
|
|
|
|
|
|