Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BuildVariables.cs.in « MonoDevelop.Core « core « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 994969ab5f92767c3dcf873a91eac95daed9f5bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace MonoDevelop
{
	public static class BuildInfo
	{
		public const string Version = "@PACKAGE_VERSION@";
		public const string VersionLabel = "@PACKAGE_VERSION_LABEL@";
		public const string CompatVersion = "@COMPAT_ADDIN_VERSION@";
		public const string FullVersion = "@FULL_VERSION@";

		internal const string BuildLane = "@BUILD_LANE@";
	}
}