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";
|
2017-09-02 22:29:44 +03:00
|
|
|
public const string Minor = "3";
|
2018-02-10 23:24:27 +03:00
|
|
|
public const string Build = "5";
|
2018-05-22 01:07:17 +03:00
|
|
|
public const string Revision = "1669";
|
2015-05-14 22:35:07 +03:00
|
|
|
|
|
|
|
|
public const string MainVersion = Major + "." + Minor;
|
|
|
|
|
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
|
|
|
|
}
|
|
|
|
|
|