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")]
|
2018-01-07 22:58:34 +03:00
|
|
|
[assembly: AssemblyCopyright("Copyright © 2005-2018 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
|
|
|
|
|
{
|
2015-08-28 22:32:00 +03:00
|
|
|
public const string Major = "3";
|
2018-05-24 08:03:21 +03:00
|
|
|
public const string Minor = "4";
|
2018-08-29 22:56:13 +03:00
|
|
|
public const string Build = "2";
|
2018-10-12 07:15:21 +03:00
|
|
|
public const string Revision = "1837";
|
2015-05-14 22:35:07 +03:00
|
|
|
|
|
|
|
|
public const string MainVersion = Major + "." + Minor;
|
|
|
|
|
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
|
|
|
|
}
|
|
|
|
|
|