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")]
|
2021-01-05 04:50:21 +03:00
|
|
|
[assembly: AssemblyCopyright("Copyright © 2005-2021 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";
|
2021-03-07 23:58:35 +03:00
|
|
|
public const string Minor = "8";
|
2021-08-28 23:15:33 +03:00
|
|
|
public const string Build = "1";
|
2021-10-19 14:35:40 +03:00
|
|
|
public const string Revision = "3004";
|
2015-05-14 22:35:07 +03:00
|
|
|
|
|
|
|
|
public const string MainVersion = Major + "." + Minor;
|
|
|
|
|
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
|
|
|
|
}
|
|
|
|
|
|