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")]
|
2025-06-23 16:36:58 +03:00
|
|
|
[assembly: AssemblyCopyright("Copyright © 2005-2025 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";
|
2025-06-23 16:36:58 +03:00
|
|
|
public const string Minor = "11";
|
2026-02-02 14:19:47 +03:00
|
|
|
public const string Build = "1";
|
2026-06-22 18:00:17 +03:00
|
|
|
public const string Revision = "3835";
|
2015-05-14 22:35:07 +03:00
|
|
|
|
|
|
|
|
public const string MainVersion = Major + "." + Minor;
|
|
|
|
|
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
|
|
|
|
}
|
|
|
|
|
|