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

XBuildConsts.cs « xbuild « tools « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9fdaa6c8c7d6577059dd821c663fb4c42b43f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
static class XBuildConsts
{
#if XBUILD_14
	public const string Version = "14.0";
	public const string AssemblyVersion = "14.0.0.0";
	public const string FileVersion     = "14.0.22310.1";
#elif XBUILD_12
	public const string Version = "12.0";
	public const string AssemblyVersion = "12.0.0.0";
	public const string FileVersion     = "12.0.21005.1";
#else
	public const string Version = "4.0";
	public const string AssemblyVersion = Consts.FxVersion;
	public const string FileVersion     = Consts.FxFileVersion;
#endif
}